Skip to content

Instantly share code, notes, and snippets.

@mnmkng
Created November 14, 2022 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mnmkng/5b301b105ef3b4c9b797216d30d32edf to your computer and use it in GitHub Desktop.
Save mnmkng/5b301b105ef3b4c9b797216d30d32edf to your computer and use it in GitHub Desktop.
import { PlaywrightCrawler } from 'crawlee';
const crawler = new PlaywrightCrawler({
requestHandler: async ({ page }) => {
console.log(await page.title());
}
})
await crawler.run(['https://github.com/topics/javascript']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment