I am trying to run some translator tests in Safari (they work fine in Chrome).
The problem is that the return key does not work correctly in the method sendKeys(). The value is not sent (- is undefined)
Here is what I did on the input object:
input.sendKeys(value + '\n');
I have also tried
input.sendKeys(value + protractor.Key.ENTER);
But getting the same results.
source
share