Reputation: 1
I have a scraping project using nodriver. I'm trying to use it on a page that has several redirects, which causes the program to crash. So I want to find a way to do a dynamic wait so I can wait for the page to fully load before continuing processing.
Upvotes: 0
Views: 51
Reputation: 64
time.sleep(5) might solve the problem for you. The 5 can be replace with how long you want to wait
Upvotes: -1