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 |
What is object repository? How can we create object repository in selenium?
How to submit a form using selenium webdriver?
What api is required for database testing in selenium webdriver?
Mention what is desired capability? How is it useful in terms of selenium?
Tell us what kinds of test types are supported by selenium?
What are the junits annotation linked with selenium?
How you can insert a break point in selenium ide?
How do you click on a menu item in a drop down menu?
Can we use selenium grid for performance testing?
In selenium what are breakpoints and startpoints?
List some scenarios which we cannot automate using selenium webdriver?
What are the testing kinds that can be supported by selenium?