This actor takes a list of URLs and downloads HTML of each page.
- Modified
- Users383
- Runs160,888
This actor simply scrapes the full HTML code for all given URLs. In input you can define which proxies should be used.
Additionally, you can define a selector that will be awaited for each
of the URLs simply by adding waitForSelector
field to userData
property
of the request:
{
"requestListSources": [{
"url": "https://example.com",
"userData": {
"waitForSelector": ".class-i-want-to-wait-for"
}
}]
}