How can we select an item from the drop-down list using class name attribute

0 votes
I want to select an item from a drop-down. But the locator is not able to find the Drop-Down.I am able to click on the field, but I am not able to locate the drop-down. Using Firebug, it is showing "Select Class"

How to select the item from that drop-down using class name?
Apr 30, 2018 in Selenium by Atul
• 10,240 points
1,769 views

1 answer to this question.

0 votes

You can use the below codes to solve your problem:

new SelectElement(driver.FindElement(By.ClassName("<className>"))).SelectByIndex("");

new SelectElement(driver.FindElement(By.ClassName("<className>"))).SelectByText("");

 new SelectElement(driver.FindElement(By.ClassName("<className>"))).SelectByValue("");
answered Apr 30, 2018 by Meci Matt
• 9,460 points

Related Questions In Selenium

0 votes
1 answer
0 votes
1 answer

Select an item from a dropdown list using Selenium WebDriver

Use this then it will work - new ...READ MORE

answered Apr 9, 2018 in Selenium by Vardy
• 2,360 points
7,512 views
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,748 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,620 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,696 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,560 views
0 votes
1 answer

Selecting an item from dropdown list using Selenium WebDriver & java

Use the below code: new Select(driver.findElement(By.id("blood-group"))).selectByVisibleText("AB"); You also need ...READ MORE

answered May 8, 2018 in Selenium by Meci Matt
• 9,460 points
5,483 views
0 votes
1 answer

Can we test Desktop Applications using Selenium WebDriver?

Selenium WebDriver is a web-based automation testing ...READ MORE

answered May 3, 2018 in Selenium by Meci Matt
• 9,460 points
1,377 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP