Skip to content

Instantly share code, notes, and snippets.

@andreidbr
Created March 27, 2018 17:17
Show Gist options
  • Save andreidbr/01d03eba815cfc898bb7458d7aa4da5e to your computer and use it in GitHub Desktop.
Save andreidbr/01d03eba815cfc898bb7458d7aa4da5e to your computer and use it in GitHub Desktop.
A simple test in JavaScript using Selenium Webdriver
const {Builder, By, Key, until} = require('selenium-webdriver');
let driver = new Builder().forBrowser('chrome').build();
driver.get("https://andreidbr.github.io/JS30/");
driver.findElement(By.xpath('/html/body/div[2]/div[1]')).click();
driver.wait(until.titleIs('JS30: 01 Drums'), 1000);
driver.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment