Instantly share code, notes, and snippets.

anonymous /https not working
Created Feb 27, 2018

Embed
What would you like to do?
const {Builder, By, Key, until} = require('selenium-webdriver');
(async function example() {
let driver = await new Builder().forBrowser('chrome').build();
try {
await driver.get('https://www.melia.com');
} finally {
await driver.sleep(1000);
await driver.quit();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment