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 |
Give selenium ide tool disadvantage?
Mention what are the capabilities of selenium webdriver or selenium 2.0?
How can we check if an element is enabled for interaction on a web page?
Is there a way to refresh browser using selenium?
How can you fetch an attribute from an element? How to retrieve typed text from a textbox?
How to delete cookies in selenium?
Is selenium capable of handling windows pop-ups?
How can we get a text of a web element?
How to connect a database in selenium?
Why testers should opt for selenium and not qtp? Selenium is more popular than qtp as
How to get the number of frames on a page?
What is the purpose of the getoptions() method?