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 |
Hi can anyone suggest me what type of non technical questions asked in interview for experienced people, I am trying to get job with fake experience can anyone help me please
What is selenium? What are the different selenium components?
how will u log a bug and the process of logging bus in selenium?
How you can debug the tests in selenium ide?
How to find the xpath of web table elements.in chrome or internet explorer.or without using fire bug.?
What are the programming languages supported by selenium webdiver?
When should I use Selenium IDE?
How do you upload a file?
Explain how can you find broken links in a page using selenium webdriver?
Can we move back and forward in browser using selenium?
How to send alt/shift/control key in selenium webdriver?
How can we maximize browser window in selenium?