‘sendKeys’ are not working in Selenium WebDriver

I also had that problem, but then I made it work by:

myInputElm.click();
myInputElm.clear();
myInputElm.sendKeys('myString');

Leave a Comment