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 |
How to handle alerts in selenium?
Explain what can cause a selenium ide test to fail?
What kinds of tests can Selenium support?
Explain using webdriver how you can perform double click?
Differentiate between ‘/’ and ‘//’.
List out the technical challenges with selenium?
How to find whether an element is displayed on the web page?
where do u maintain all your test cases in manual not in selenium
How to capture the screenshot of failed testcase only among a set of testcases?
Explain the different exceptions in selenium webdriver.
How does you identify the list of links present on the page
Explain what are the different types of locators in selenium?