difference between Implicit Wait and Explicit Wait with syntax.?
Answer Posted / deepa
IMPLICIT WAIT:
WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.get("http://url_that_delays_loading");
WebElement myDynamicElement = driver.findElement(By.id("myDynamicElement"));
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
How to handle https website in selenium? Or how to accept the ssl untrusted connection?
I am not able to use "style" attribute to locate element with ie browser?
What are the significant changes in upgrades in various selenium versions?
How do you click on a menu item in a drop down menu?
What are the different keyboard operations that can be performed in selenium?
How you can convert any selenium ide tests from selenese to another language?
How testing is better than junit?
How do you identify an object using selenium?
How to download a file in selenium webdriver?
Tell me how can we maximize browser window in selenium?
How you can handle frames using selenium 2.0?
What is a hub in selenium grid?
What will be the limits of selenium?
Can you explain the framework which you have used in your selenium project?
What are the advantages and disadvantages of using selenium as testing tool?