Selenium.WaitForPageLoad("50000");
Selenium.Click("title");
Most times when it takes more than 50000, I get Timeout error. I do not want to increase the time. Is there a way to give it something like "take as long as you want"?
Most times when it takes more than 50000, I get Timeout error. I do not want to increase the time. Is there a way to give it something like "take as long as you want"? |
|||
|
|
|
I don't recommend it, but if you want selenium to wait indefinitely, use a try-catch block and a loop:
Again this is probably a bad idea, timeouts are generally a good thing. Depending on what you are trying to do you might want to consider checking if a particular element has finished loading as opposed to the whole page. |
|||
|
|
|
Are you sure you want it to take as long as it takes? It could hang all day... I generally found if it takes ages to run, it had already failed a long time before. I have used WatiN before and you can use a .WaitUntil() command to check that a specific element on the page has been loaded. Not sure what the equivalent in Selenium would be. This link may help, if you're happy creating add-ins: |
|||
|
|
Have you tried to reverse the order of these commands? Selenium.Click("title");
Selenium.WaitForPageToLoad("50000");
Or simply use: Selenium.ClickAndWait("title");
|
|||
|
|