I'm facing an issue in my tests with a particular line of code
browser.actions().sendKeys(Key.chord(Key.CONTROL, '?')).perform();
Interestingly, it works fine with another symbol. For example:
browser.actions().sendKeys(Key.chord(Key.CONTROL, 'a')).perform();
Can anyone guide me on how to correctly use browser.actions().sendKeys
in protractor with the "?" symbol?