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 you can login into any site if it’s showing any authentication popup for password and username?

0 Answers  


How you can debug the tests in selenium ide?

0 Answers  


What is the main disadvantage of implicit wait?

0 Answers  


Tell me what you know about selenium?

0 Answers  


How you can find broken images in a page using selenium web driver?

0 Answers  






Mention 5 different exceptions you had in selenium web driver?

0 Answers  


What is an XPath?

0 Answers  


What are the significant changes/upgrades in various selenium versions?

0 Answers  


How do I upload a file using selenium? I need to upload a word file during test execution.

0 Answers  


What is object repository? How can we create object repository in selenium?

0 Answers  


What is page object model in selenium?

0 Answers  


What are the important selenium ide commands or selenese commands?

0 Answers  


Categories