15 lines
460 B
TypeScript
15 lines
460 B
TypeScript
import { PlaywrightCrawler } from 'crawlee';
|
|
|
|
const crawler = new PlaywrightCrawler({
|
|
async requestHandler({ page }) {
|
|
// Here we don't wait for the selector and immediately
|
|
// extract the text content from the page.
|
|
const actorText = await page.$eval('.ActorStoreItem', (el) => {
|
|
return el.textContent;
|
|
});
|
|
console.log(`ACTOR: ${actorText}`);
|
|
},
|
|
});
|
|
|
|
await crawler.run(['https://apify.com/store']);
|