1

I have a scraper where I have:

driver.set_page_load_timeout(30) 

and

driver.implicitly_wait(10) 

Does implicit wait affect the driver.get() call? I was wondering if my 10 second implicit wait would not allow my 30 second page load timeout to complete and prematurely discontinue the loading of the page after 10 seconds.

Thanks

demouser123
3,5325 gold badges30 silver badges41 bronze badges
asked Jul 3, 2018 at 18:02

1 Answer 1

1

I believe there is no such connection between set_page_load_timeout and implicitly_wait() as their intentions are different.

implicitly_wait waits for an element where set_page_load_timeout has to do with the entire DOM loading/rendering depending on the pageLoadStrategy.

Are you facing any issues or this is just for information purpose.

answered Jul 4, 2018 at 5:23
0

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.