Skip to content

Instantly share code, notes, and snippets.

@giltayar
Last active December 19, 2017 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giltayar/8872b1ba356389b2db68cddf0171869f to your computer and use it in GitHub Desktop.
Save giltayar/8872b1ba356389b2db68cddf0171869f to your computer and use it in GitHub Desktop.
const {Builder, By, Key, until} = require('selenium-webdriver');
let driverPromise = new Builder()
.forBrowser('firefox')
.build();
driverPromise.then(driver => driver.get('http://www.google.com/ncr'))
.then(() => driver.findElement(By.name('q')))
.then(element => element.sendKeys('webdriver', Key.RETURN))
.then(() => driver.wait(until.titleIs('webdriver - Google Search'), 1000))
.then(() => driver.quit())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment