using watir-webdriver [ http://github.com/jarib/watir-webdriver ]

how do i wait for a page to load after i click a link?

at the moment i am doing

sleep n

but this is not ideal as the page response varies so much.

is their a method to test whether the page is ready or whether their is a certain element in the page. I understand in the normal watir gem there is Watir::Waiter.wait_until or something similar but I cannot see this in the webdriver version.

link|improve this question

71% accept rate
2  
Are you trying to make something wait until after the page is fully loaded? I thought that was standard behavior... – NinjaCat Aug 17 '10 at 15:53
Actually you are correct. However the reason I am having to sleep is because I have some ajax updating the page content. I want to wait until the response is successful. – sfusion Aug 17 '10 at 16:14
feedback

4 Answers

up vote 3 down vote accepted

I don't know if they're the best way, but this is how I'm handling this for waiting for updating div to clear:

while browser.div(:id=>"updating_div").visible? do sleep 1 end

This is how I handle waiting for something to display:

until browser.div(:id=>"some_div").exists? do sleep 1 end

link|improve this answer
cool this works perfectly in firefox, not so great in chrome. i've gone with: sleep 1 until browser.div(:foo => 'bar').exists? – sfusion Aug 18 '10 at 9:33
1  
The above method is not recommended because it may never return and lock up your scripts (javascript error, code change, etc.). Watir::Waiter.wait_until(15) { browser.div(:id => "updating_div).visible? } – JEH Oct 25 '10 at 15:57
feedback

Today's release adds an optional require that brings in some helpers for waiting for elements. These are not (at the moment) available in Watir 1.6, so be aware if you use both libraries side by side.

Check the the page on AJAX and waiting for elements in the Watir-webdriver Wiki

link|improve this answer
feedback

Did you read How to wait with Watir?

link|improve this answer
good for Watir, but not so much for Watir Webdriver.. – Chuck van der Linden Nov 16 '11 at 22:26
feedback

you can use wait_until....

or

waituntilExists methods

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.