
Puppeteer Scraper
Pricing
Pay per usage

Puppeteer Scraper
Crawls websites with the headless Chrome and Puppeteer library using a provided server-side Node.js code. This crawler is an alternative to apify/web-scraper that gives you finer control over the process. Supports both recursive crawling and list of URLs. Supports login to website.
5.0 (5)
Pricing
Pay per usage
116
Monthly users
605
Runs succeeded
>99%
Response time
30 days
Last modified
10 months ago
Inject Jquery issue
Hi,
It seems not possible to inject jquery as specified in the documentation.
What is the proper way do do that ?
1async function pageFunction(context) { 2 const { page, request, Apify } = context; 3 4 await Apify.utils.puppeteer.injectJQuery(page); 5 6// "Apify.utils" is undefined 7 8 return { 9 url: request.url, 10 }; 11}
Thanks

The method is now directly available in the crawling context and you no longer need to provide the page
option as it gets used automatically:
https://crawlee.dev/api/puppeteer-crawler/interface/PuppeteerCrawlingContext#injectJQuery
1async function pageFunction(context) { 2 const { request, injectJQuery } = context; 3 await injectJQuery(); 4 5 return { 6 url: request.url, 7 }; 8}

Where did you find the example? Current docs are correct, they only contain the contextual helper, so closing as answered. Be sure to read the latest version of the docs, sounds like you are viewing the old one for v2.
Pricing
Pricing model
Pay per usageThis Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.