Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you get all the values from Drop Down list?

Answers were Sorted based on User's Feedback



How do you get all the values from Drop Down list?..

Answer / rupesh

WebElement sel = myD.findElement(By.name("dropdown_name"));
List<WebElement> lists = sel.findElements(By.tagName("option"));
for(WebElement element: lists)
{
String var2 = tdElement.getText();
System.out.println(var2);
}

Is This Answer Correct ?    10 Yes 0 No

How do you get all the values from Drop Down list?..

Answer / raam

----------------------------------------------
Select cel=new Select(driver.findElement(By.id("name"))

cel.selectByVisibleText("state")
---------------------------------------
instead of selectByVisibleText can use-

selectByindex()
getoptions()---used to store all options inside drop down

Is This Answer Correct ?    8 Yes 3 No

How do you get all the values from Drop Down list?..

Answer / p sureshchowdary

Select dropdown=new Select(d.findElement(By.id("month")));
List<WebElement> list=dropdown.getOptions();
for(WebElement we:list) {
System.out.println(we.getText());
}

Is This Answer Correct ?    5 Yes 0 No

How do you get all the values from Drop Down list?..

Answer / chetan phani.j

If the dropdown list box is developed by using Select tag then we can use Select class.
ex:
WebElement adrs=d.findelementBy.id();
Select sal=new Select(adrs);

Is This Answer Correct ?    1 Yes 0 No

How do you get all the values from Drop Down list?..

Answer / brahmi

it selcetd by using selectbyivisuble test,selectby index,selectbyvalue

Is This Answer Correct ?    3 Yes 4 No

How do you get all the values from Drop Down list?..

Answer / 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

More Selenium Interview Questions

Explain what is framework and what are the frameworks available in rc?

0 Answers  


difference between Close() and Quit()?

3 Answers   HCL,


What is the difference between driver.get() and driver.navigate.to()

0 Answers  


How to upload a file in selenium webdriver?

0 Answers  


What is object repository? How can we create object repository in selenium?

0 Answers  


What is framework and what are the frameworks available in rc?

0 Answers  


What are the different components of selenium?

0 Answers  


What are the types of assertions there in selenium?

0 Answers  


What is the difference between captureentirepagescreenshot and capturescreenshot?

0 Answers  


How colors could be handled in selenium webdriver?

0 Answers  


What is htmlunitdriver?

0 Answers  


@timeouts ||= Timeouts.new(@bridge) what does it mean?

0 Answers  


Categories