Different types of synchronization
Answer / bharat
There are two types of synchronization in selenium
1)Unconditional Synchronization
Exam:- wait(), time.sleep()
2) Conditional Synchronization
- Implicit wait
Exam -driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
- Explicit wait
Exam -
WebDriverWait wait = new WebDriverWait(driver, 10);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id(“statedropdown”)));
Is This Answer Correct ? | 1 Yes | 0 No |
Mention what is listeners in selenium webdriver?
Write a code snippet to launch chrome browser in webdriver.
Which automation tools can be used for post-launch validation with continuous integration?
Mention what is the use of x-path?
How can we find all the links on a web page?
What will be the different kinds of locators in selenium?
Explain how you can capture server side log selenium server?
Mention why to choose python over java in selenium?
Other than the default port 444 how you can run selenium server?
How to handle the AJAX popup window?
Tell me how can we maximize browser window in selenium?
Tell me the meaning of assertion in selenium and what are the types of assertion?