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
Which is the package which is to be imported while working with webdriver?
What are the different methods to refresh a web page in webdriver?
How does you use mouse over actions
Mention in what ways you can customize testng report?
What is a data driven framework?
What is the meaning of assertion in selenium and what are the types of assertion?
Write a code snippet to launch firefox browser in webdriver.
What differs the configuration of Selenium Selenium 2.0 1.0?
From selenium ide how you can execute a single line?
What is the difference between getwindowhandles() and getwindowhandle()?
How can we create a data-driven framework using testng?
Write a code snippet to launch internet explorer browser in webdriver.
Explain the difference between implicit wait and explicit wait.?
Do you know how to locate a link using its text in selenium?
How to handle alerts in selenium webdriver?