- Ronnie4
- Posts : 1
Join date : 2016-03-24
Wait for entire page to load
Thu Mar 24, 2016 9:33 pm
Is it possible to make selenium wait for the entire web page to load before executing any automation tasks ?
I'm searching for an element on page but it doesn't show in the first few seconds
I'm searching for an element on page but it doesn't show in the first few seconds
Re: Wait for entire page to load
Mon Mar 28, 2016 6:17 pm
you can use explicit wait instead of implicit wait.
WebElement myDynamicElement = (new WebDriverWait(driver, 10))
.until(ExpectedConditions.presenceOfElementLocated(By.id("myDynamicElement")));
define waiting time as per requirement. It will wait till element is not present and again look for after 10 seconds.
WebElement myDynamicElement = (new WebDriverWait(driver, 10))
.until(ExpectedConditions.presenceOfElementLocated(By.id("myDynamicElement")));
define waiting time as per requirement. It will wait till element is not present and again look for after 10 seconds.
- Dan_walt
- Posts : 2
Join date : 2016-03-24
Re: Wait for entire page to load
Thu Mar 31, 2016 10:48 pm
You have to use selenium WebDriver's wait method.
There's a good explanation about it here: http://forum.testproject.io/index.php?topic=37.0
There's a good explanation about it here: http://forum.testproject.io/index.php?topic=37.0
Permissions in this forum:
You cannot reply to topics in this forum