How do you get all the values from Drop Down list?
Answer Posted / raj
(new WebDriverWait(driver, 60)).until(new ExpectedCondition<WebElement>() {
public WebElement apply(WebDriver newDriver) {
return newDriver.findElement(By.id("BlogArchive1_ArchiveMenu"));
}
});
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is pom (page object model)?
What is the purpose of creating a reference variable- 'driver' of type webdriver instead of directly creating a firefoxdriver object or any other driver's reference in the statement webdriver driver = new firefoxdriver();?
Explain me what could be the cause of selenium webdriver test to fail?
How will you find an element using selenium?
How is selenium different from qtp?
What are the types of assertions there in selenium?
What is selenium 2.0?
How you can use “submit” a form using selenium?
Which are the browsers supported by selenium rc?
How to deal with frame in webdriver?
In selenium what are breakpoints and startpoints?
How to use frame elements in Selenium on a page?
What are the important selenium ide commands or selenese commands?
How do you send enter/tab keys in webdriver?
What are the challenges in handling ajax call in selenium webdriver?