How to select/get drop down option in Selenium 2
Asked Answered
C

10

96

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");
Coefficient answered 21/6, 2011 at 18:51 Comment(3)
Have you tried to locate it using Firebug? Using the xpath generated with Firebug/xpather can make it easier.Prefiguration
The question is not about locating or finding the drop down. Its about selecting a label in that drop down. I can locate the drop down but don't know which method to call in Selenium 2 since select() and getSelectedValue() or getSelectedLabel() do not work in Selenium 2.Coefficient
Solution in c#: #5278781Reames
I
184

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()
Islaen answered 22/6, 2011 at 5:55 Comment(6)
By.xpath("//path_to_drop_down"). I would replace this with a locator like By.name as so on.Featherston
deselectAll will throw an UnsupportedOperationException if the select does not support multiple selectionsJetpropelled
In C#, use the SelectElement class, so: SelectElement salesExecutiveDropDown = new SelectElement(webDriver.FindElement(By.Id("salesExecutiveId")));Unhook
Fyi this code was not able to select a dropdown until I commented out this line: //select.deselectAll(); Then it started working. Your mileage may vary.Fleck
Note that deselectAll is only valid for multiselect: selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/….Zionism
yes, I would delete line select.deselectAll(); as it doesn't work for most dropdowns, because those are single selection typicallyJillianjillie
A
5
driver.findElement(By.id("id_dropdown_menu")).click();
driver.findElement(By.xpath("xpath_from_seleniumIDE")).click();
Archine answered 14/2, 2014 at 15:35 Comment(0)
C
4

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")
Cremona answered 31/7, 2012 at 20:32 Comment(0)
S
3

Try using:

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

or

selenium.select("id=items","index=3")
Schmuck answered 3/12, 2012 at 10:3 Comment(0)
B
0

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
    }
}
Boastful answered 14/2, 2014 at 18:33 Comment(0)
K
0

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
}
Kuhl answered 18/6, 2014 at 12:26 Comment(0)
D
0

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.

Demars answered 7/12, 2017 at 9:51 Comment(0)
W
0

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");

Wartow answered 14/6, 2021 at 9:17 Comment(0)
H
0

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

Hulbard answered 29/3, 2022 at 15:57 Comment(0)
X
-2

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.

Xylem answered 22/6, 2011 at 6:23 Comment(1)
-1 Way overcomplicated and using deprecated methods (RenderedWebElement)Eridanus

© 2022 - 2024 — McMap. All rights reserved.