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

We do create a reference variable ‘driver’ of type webdriver

0 Answers  


What is the purpose of creating a reference variable- ‘driver’ of type

0 Answers  


What is Selenese?

0 Answers  


What is the automation test?

0 Answers  


Difference between @findByMethod and @findelement?

3 Answers   HCL,






List some of the common automation frameworks.

0 Answers  


How do you attach File on a page?

1 Answers   HCL,


What are the regular expression patterns available in selenium?

0 Answers  


Write the code to right click an element in selenium?

0 Answers  


What the webdriver supported mobile testing drivers do you know?

0 Answers  


How does one store the current url using selenium 2.0?

0 Answers  


How can you use the recovery scenario in selenium webdriver?

0 Answers  


Categories