0.1.0 • Published 2 years ago

beppe v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago
import Beppe from './beppe.js';

main();

async function main() {
  const beppe = await new Beppe('https://example.com').connect();
  await beppe.execFunc(() => alert('Hello World!'));
  await beppe.goto('https://google.com/');
  const location = await beppe.eval('window.location.href');
  console.log(location); // https://google.com/
}