Different types of synchronization



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

Post New Answer

More Selenium Interview Questions

How are web-based pop-ups handled in selenium?

0 Answers  


What is heightened privileges browsers?

0 Answers  


What is the difference between the commit and verify commands?

0 Answers  


What are the different exceptions you have faced in selenium webdriver?

0 Answers  


difference between Close() and Quit()?

3 Answers   HCL,






List the different selenium tools.

1 Answers  


What are some expected conditions that can be used in explicit waits?

0 Answers  


What is the command that is used in order to display the values of a variable into the output console or log?

0 Answers  


Which technique should you consider using throughout the script “if there is neither frame id nor frame name”?

0 Answers  


When we use findElement () and findElements () findElement ()?

0 Answers  


What is the build Tool you have used in your project?

4 Answers   Accenture, HCL, Inasra Technologies, Infosys, Maven Infotech,


How to locate a link using its text in selenium?

0 Answers  


Categories