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 are desiredcapabilities in selenium webdriver?
What are driver.close and driver.quit in WebDriver? Which is more preferable?
What are the languages supported by webdriver?
What are the different exceptions you have faced in selenium webdriver?
How to clear the text in the text box using selenium webdriver?
What is intellij?
Explain the fundamental difference between xpath and css selector.
How to send alt/shift/control key in selenium webdriver?
What is heightened privileges browsers?
How to verify if the checkbox/radio is checked or not?
How recorded command can be edited in ide?
What is Selenium IDE?