0.3.0 • Published 1 year ago
@critik/simple-webdriver v0.3.0
simple-webdriver
A webdriver javascript bindings written in typescript with no dependency
How to get started
Install the package simple-webdriver
npm install --save simple-webdriver
Install a W3C compatible webdriver
npm install --save webdriver-manager
webdriver-manager update
webdriver-manager start
Start to code :
import { WebDriver } from "simple-webdriver"
async function example() {
let session = new WebDriver("http://localhost:4440/wd/hub");
let browser = await session.start();
await browser.navigate().to("http://perdu.com");
let title = await browser.getTitle();
console.log(title);
}
example();
Warning
This is an early version which should not be used in production environment. Major changes can occur before 1.0.0.
0.3.0
1 year ago
0.2.1-patch1
3 years ago
0.2.1
3 years ago
0.2.3
2 years ago
0.2.2
3 years ago
0.2.0
3 years ago
0.1.1-alpha9
3 years ago
0.1.1-alpha13
3 years ago
0.1.1-alpha12
3 years ago
0.1.1-alpha11
3 years ago
0.1.1-alpha10
3 years ago
0.1.1-alpha8
3 years ago
0.1.1-alpha6
3 years ago
0.1.1-alpha5
3 years ago
0.1.1-alpha4
3 years ago
0.1.1-alpha3
3 years ago
0.1.1-alpha2
3 years ago
0.1.1-alpha7
3 years ago
0.1.1-alpha1
3 years ago
0.1.0
3 years ago