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 |
Explain how to iterate through options in test script?
How to use regular expressions in selenium?
Which selenium command(s) simulates selecting a link?
How to find the xpath of web table elements.in chrome or internet explorer.or without using fire bug.?
What are the main advantages of selenium?
Why to choose python over java in selenium?
How to conduct database testing with selenium webdriver?
What are the webdriver supported mobile testing drivers?
Can I navigate back and forth in a browser in selenium webdriver?
How does one execute java scripts function in selenium?
How will you verify the specific position of an web element
How do you handle Alerts and Pop Ups?