Skip to content

Instantly share code, notes, and snippets.

@giltayar
Last active June 15, 2018 01:04
Show Gist options
  • Save giltayar/a3c3739d46700c97f26c2792a76bd681 to your computer and use it in GitHub Desktop.
Save giltayar/a3c3739d46700c97f26c2792a76bd681 to your computer and use it in GitHub Desktop.
const {Builder, By, Key, until} = require('selenium-webdriver');
async function main() {
let driver = await new Builder()
.forBrowser('firefox')
.build();
await driver.get('http://www.google.com/ncr')
const element = await driver.findElement(By.name('q'))
await element.sendKeys('webdriver', Key.RETURN)
await driver.wait(until.titleIs('webdriver - Google Search'), 1000)
await driver.quit()
}
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment