Files
apify--crawlee/website/versioned_docs/version-3.13/guides/javascript-rendering-playwright-no-wait.ts
2026-07-13 13:23:39 +08:00

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']);