How to select/get drop down option in Selenium 2

JavaSeleniumDrop Down-MenuSelenium Webdriver

Java Problem Overview


I am converting my selenium 1 code to selenium 2 and can't find any easy way to select a label in a drop down menu or get the selected value of a drop down. Do you know how to do that in Selenium 2?

Here are two statements that work in Selenium 1 but not in 2:

browser.select("//path_to_drop_down", "Value1");
browser.getSelectedValue("//path_to_drop_down");

Java Solutions


Solution 1 - Java

Take a look at the section about filling in forms using webdriver in the selenium documentation and the javadoc for the Select class.

To select an option based on the label:

Select select = new Select(driver.findElement(By.xpath("//path_to_drop_down")));
select.deselectAll();
select.selectByVisibleText("Value1");

To get the first selected value:

WebElement option = select.getFirstSelectedOption()

Solution 2 - Java

driver.findElement(By.id("id_dropdown_menu")).click();
driver.findElement(By.xpath("xpath_from_seleniumIDE")).click();

Solution 3 - Java

in ruby for constantly using, add follow:

module Selenium
  module WebDriver
    class Element
      def select(value)
        self.find_elements(:tag_name => "option").find do |option|
          if option.text == value
            option.click
              return
           end
       end
    end
  end
end

and you will be able to select value:

browser.find_element(:xpath, ".//xpath").select("Value")

Solution 4 - Java

Try using:

selenium.select("id=items","label=engineering")

or

selenium.select("id=items","index=3")

Solution 5 - Java

A similar option to what was posted above by janderson would be so simply use the .GetAttribute method in selenium 2. Using this, you can grab any item that has a specific value or label that you are looking for. This can be used to determine if an element has a label, style, value, etc. A common way to do this is to loop through the items in the drop down until you find the one that you want and select it. In C#

int items = driver.FindElement(By.XPath("//path_to_drop_Down")).Count(); 
for(int i = 1; i <= items; i++)
{
    string value = driver.FindElement(By.XPath("//path_to_drop_Down/option["+i+"]")).GetAttribute("Value1");
    if(value.Conatains("Label_I_am_Looking_for"))
    {
        driver.FindElement(By.XPath("//path_to_drop_Down/option["+i+"]")).Click(); 
        //Clicked on the index of the that has your label / value
    }
}

Solution 6 - Java

you can do like this :

public void selectDropDownValue(String ValueToSelect) 
{

    webelement findDropDownValue=driver.findElements(By.id("id1"))    //this will find that dropdown 

    wait.until(ExpectedConditions.visibilityOf(findDropDownValue));    // wait till that dropdown appear

    super.highlightElement(findDropDownValue);   // highlight that dropdown     

    new Select(findDropDownValue).selectByValue(ValueToSelect);    //select that option which u had passed as argument
}

Solution 7 - Java

This method will return the selected value for the drop down,

public static String getSelected_visibleText(WebDriver driver, String elementType, String value)
  {
    WebElement element = Webelement_Finder.webElement_Finder(driver, elementType, value);
   Select Selector = new Select(element);
    Selector.getFirstSelectedOption();
    String textval=Selector.getFirstSelectedOption().getText();
    return textval;
  }

Meanwhile

String textval=Selector.getFirstSelectedOption();

element.getText();

Will return all the elements in the drop down.

Solution 8 - Java

Select in Selenium WebDriver

The ‘Select’ class in Selenium WebDriver is used for selecting and deselecting the option in a dropdown. The objects of Select type can be initialized by passing the dropdown webElement as parameter to its constructor.

WebElement testDropDown = driver.findElement(By.id("testingDropdown")); Select dropdown = new Select(testDropDown);

Selecting options from dropdown

There are three ways of selecting options from dropdown-

  1. selectByIndex – To select an option based on its index, beginning with 0.

dropdown.selectByIndex(3);

  1. selectByValue – To select an option based on its ‘value’ attribute.

dropdown.selectByValue("Database");

  1. selectByVisibleText – To select an option based on the text over the option.

dropdown.selectByVisibleText("Database Testing");

Solution 9 - Java

Select a particular value in a dropdown using the methods of Select class in Selenium Select class implement select tag, providing helper methods to select and deselect options.

WebElement dropdownlist = driver.findElement(By.xpath(locator));
Select listbox = new Select(dropdownlist);

Use of methods of select class with examples:

selectByIndex(int index): Select the option at the given index.
listbox.selectByIndex(2);

selectByVisibleText(java.lang.String text): Select all options that display text matching the argument
listbox.selectByVisibleText(“Date”);

Please refer to the below link for more detailed discussions here

Solution 10 - Java

This is the code to select value from the drop down

The value for selectlocator will be the xpath or name of dropdown box, and for optionLocator will have the value to be selected from the dropdown box.

public static boolean select(final String selectLocator,
		final String optionLocator) {
	try {
		element(selectLocator).clear();
		element(selectLocator).sendKeys(Keys.PAGE_UP);
		for (int k = 0; k <= new Select(element(selectLocator))
				.getOptions().size() - 1; k++) {
			combo1.add(element(selectLocator).getValue());
			element(selectLocator).sendKeys(Keys.ARROW_DOWN);
		}
		if (combo1.contains(optionLocator)) {
			element(selectLocator).clear();
			new Select(element(selectLocator)).selectByValue(optionLocator);
			combocheck = element(selectLocator).getValue();
			combo = "";

			return true;
		} else {
			element(selectLocator).clear();
			combo = "The Value " + optionLocator
					+ " Does Not Exist In The Combobox";
			return false;
		}
	} catch (Exception e) {
		e.printStackTrace();
		errorcontrol.add(e.getMessage());
		return false;
	}
}



private static RenderedWebElement element(final String locator) {
	try {

		return (RenderedWebElement) drivers.findElement(by(locator));
	} catch (Exception e) {
		errorcontrol.add(e.getMessage());
		return (RenderedWebElement) drivers.findElement(by(locator));
	}
}

Thanks,

Rekha.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser786045View Question on Stackoverflow
Solution 1 - JavajanderssnView Answer on Stackoverflow
Solution 2 - JavathrasherView Answer on Stackoverflow
Solution 3 - JavaAlekseiPetrovskiView Answer on Stackoverflow
Solution 4 - JavacoolcubView Answer on Stackoverflow
Solution 5 - JavaBenView Answer on Stackoverflow
Solution 6 - JavaPraveenView Answer on Stackoverflow
Solution 7 - JavaJophin P JohnView Answer on Stackoverflow
Solution 8 - JavarohitssView Answer on Stackoverflow
Solution 9 - Javaarpita biswasView Answer on Stackoverflow
Solution 10 - JavaKartmcadView Answer on Stackoverflow