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 you can switch back from a frame?
How can we deal with pop-up windows based on?
Why do you need session handling while working with selenium?
Tell us what kinds of test types are supported by selenium?
What is the automation test?
Using web driver how you can store a value which is text box?
What do you mean by xpath?
Explain how you can handle colors in web driver?
How can you mark a test case as failed by using soft assertion?
What is the difference between setspeed() and sleep() methods?
How can we inspect the web element attributes in order to use them in different locators?
Other than the default port 444 how you can run selenium server?