constant-blue
constant-blue3y ago

Download Delay

does crawlee support download delay? Like in Scrapy? Because I want to crawl a website but this website has delay before to load its content, so my current crawlee project didn't get the content of the website.
5 Replies
lemurio
lemurio3y ago
hey, how about waiting for a selector?
constant-blue
constant-blueOP3y ago
I will scrape many and different website's so that why I'm not depending on a selector
NeoNomade
NeoNomade3y ago
maxRequestsPerMinute
Oleg V.
Oleg V.3y ago
Use waitUntil() (https://crawlee.dev/api/playwright-crawler/namespace/playwrightUtils#waitUntil) Just find proper event to wait for. Or You can use sleep() (https://crawlee.dev/api/utils/function/sleep) (not the best approach).
constant-blue
constant-blueOP3y ago
thanks for this, I tried both of these and set a usecase for each. Also I try the networkIdle

Did you find this page helpful?