Using Selenium (C#) how do I select an item from a drop-down list
-
I'm using the Selenium IDE to record my initial tests and then export them to c# and then use the webdriver. Some things that I do from the IDE don't export. I am trying to select a State from a drop-down text list. I don't have much background in HTML and am kind of new to C# also (I've programmed for a couple semesters in Java so far, c# for about a month.) How would I go about selecting a specific state from the dropdown list?
-
Answer:
I'm assuming you're using Firefox? Right-click the drop-down list and select "Inspect Element". Get the tag from the information (everything in green following the pound sign). Then add this to your code where you need to select the element new SelectElement(driver.FindElement(By.Id("{put your tag information here}"))).SelectByText("{State here}");
Jacob Smart at Software Quality Assurance & Testing Visit the source
Other answers
Added to Darain, use Xpath(absolute) for locate element. To get that, use fire path(with fire bug). You will get a xpath for each element.Fire path provides Xpath accurately(some time I get xpath is not working which I get from IDE). You can maintain your own array to get element from drop down by recognizing absolute xpath string. Best idea is to get all elements at a time and use particular one when you need.
Shantonu
You can use one single line to select the dropdown option. Avoid any extra line/code to click the dropdown. driver.FindElement(By.Id("DropdownId")).FindElement(By.XPath(".//option[contains(text(),'OptionText')]")).Click();
ViPuL5
I am using Google Chrome browser and performing operations on the Facebook register page. So I want to select Birth Month from "month" dropdown list. SelectElement ss = new SelectElement(driver.FindElement(By.Id("month"))); Console.WriteLine(ss.Options); foreach(IWebElement element in ss.Options) { if(element.Text == "Jun") { element.Click(); } }
Avinash Pande
I'm using c# with selenium. I prefer not to use xpaths but tend to package up my most commonly used methods. This one will allow me to select from a droplist (assuming the devs have done their job as expected and put IDs on both the droplist and the elements within the droplist): public static SelectElement ActionGetSelectElementById(this WebSiteBase unitTest, string id) { IWebElement elem = FindElementById(unitTest, id); if (elem.TagName != "select") { throw new InvalidCastException("Element is not a select element, ID: " + id); } return new SelectElement(elem); }
Chrissi
First you have to locate the web-element uniquely presented as select list on UI, you can use Firebug for that to find list element's id, name, xpath or css path. Then create SelectElement object passing this element locator attribute. To select an option in the list, you can choose any option like SelectByValue or SelectByText. using OpenQA.Selenium; using OpenQA.Selenium.Firefox; using OpenQA.Selenium.Support.UI; class SelectingOption { static void Main(string[] args) { IWebDriver driver = new FirefoxDriver(); //Launch Firefox browser driver.Navigate().GoToUrl("http://www.abc.com/"); //Go to application URL //Authentication and navigation code to page where select list there SelectElement se = new SelectElement(driver.FindElement(By.id("select_element_id"))); //Locating select list se.SelectByText("Item1"); //Select item from list having option text as "Item1" //se.SelectByValue("Item1"); //Select item from list having option value as "Item1" //Following code to selecting item from list driver.Quit(); //Quitting the Firefox } }
Naval
Related Q & A:
- How can I remove an element in a repeated list?Best solution by Stack Overflow
- How do I add an item to Finder's sidebar?Best solution by Stack Overflow
- How do I remove an item from my toolbar?Best solution by Yahoo! Answers
- For eBay, how do I delete an item that I am selling?Best solution by Yahoo! Answers
- How do I find the item number on a ebay item?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.