I\'ve started a Selenium project in C#. Trying to wait for page to finish loading up and only afterwards proceed to next action.
My code looks like this:
<
As said in Wait for page load in Selenium:
In general, with Selenium 2.0 the web driver should only return control to the calling code once it has determined that the page has loaded. If it does not, you can call
waitforelemement
, which cycles round callingfindelement
until it is found or times out (time out can be set).