-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timeout for loading dynamic content #626
Comments
Even if your javascript code works as intended, the php will not wait for it to finish, it will not even know when that timeout function gets executed. The |
Thx for response! That's right, I checked all cases. I tried |
You can pass a
|
Very strange, for me
Yes, I tried |
Did you really meant to sleep for 150 seconds? The script will probably lose the connection to the browser itself due to timeouts. The |
The
|
I need to load dynamic content for listening events.
After scrolling on a page I need some delay (6-7 sec) for loading dynamic content, but any delays don't work and the browser closes before loading starts.
sleep() is just stop any actions on the page and using js - just skips it
setTimeout doesn't work, sleep() - just stops actions, waitForNavigation - doing nothing
how to make a delay correctly?
The text was updated successfully, but these errors were encountered: