I have a trouble in my tests with this code
browser.actions().sendKeys(Key.chord(Key.CONTROL, '?')).perform();
But it's work with another symbol. For example:
browser.actions().sendKeys(Key.chord(Key.CONTROL, 'a')).perform();
How can I use browser.actions().sendKeys
in protractor with "?" symbol?