My current testing framework is protractor, which I utilize for conducting end-to-end tests in Angular.
When it comes to inputting text into an element, I typically use:
element(by.model('myModel')).sendKeys('Test');
However, I am curious about how I can send a combination of keys, such as Ctrl+A
.
I've attempted to find examples related to this query by scouring through the protractor source code on GitHub, yet have not come across a relevant illustration.