Hero scripts of machete.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
271 B

import Hero from '@ulixee/hero';
(async () => {
const hero = new Hero({ connectionToCore: 'ws://192.168.3.13:1818' });
await hero.goto('https://filesite.io');
const title = await hero.document.title;
console.log('Page title', title);
await hero.close();
})();