Skip to content

Instantly share code, notes, and snippets.

View xlqstar's full-sized avatar

XiaoLiqun xlqstar

  • Dale tech co
  • China Changzhou
View GitHub Profile
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'))