Skip to content

Instantly share code, notes, and snippets.

@omisolaidowu
Last active February 22, 2024 04:09
Visit
(async () => {
// ...
// visit CreepJS
await page.goto('https://abrahamjuliot.github.io/creepjs/');
// use setTimeout to wait for the page to load
await new Promise(resolve => setTimeout(resolve, 100000));
await browser.close();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment