How can I select a sentence from a text with protr

2019-08-27 16:00发布

问题:

I have to text a rich text editor using protractor. I want to select a sentence from the text and then click on the bold button to make this sentence bold.

I have tried some tests to select all the text, but it is not working. I am using a MAC computer.

browser.actions().keyDown(protractor.Key.COMMAND).sendKeys('a').perform();

How can I achieved it?

Thanks in advance.

回答1:

I think protractor-hotkeys package can help here. Let me know if you need some sample of it.