Working with selenium-webdriver, I see this type code: await inputField.sendKeys("BrowserStack", Key.ENTER);
Seems that just doing: await inputField.sendKeys("BrowserStack\n"); works just as well (replace Key.ENTER with \n). Is that , or am I missing something?