Search code examples
angularjsseleniumprotractorsendkeys

How can I select a sentence from a text with protractor?


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.


Solution

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