/scraper.js Secret
Last active
February 22, 2024 04:09
Visit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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