How can I perform multiple selection of options in a dropdown using Select class in Selenium

0 votes
How can I perform multiple selection of options in a dropdown using Select class in Selenium?
Jul 8, 2019 in Selenium by Priyansh
2,936 views

1 answer to this question.

0 votes

Hey Priyansh, you can select multiple options from a dropdown using Select class. Selenium provides Select class to perform various operations on a dropdown. Below code automate selection of multiple options with the help of Select class:

public class MultiSelectDropdown {

    WebDriver driver;

    @Test

    public void testApp() {

        System.setProperty("webdriver.chrome.driver",  "D:\SeleniumDrivers\chromedriver.exe");

        driver = new ChromeDriver();

        driver.get("https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select_multiple");

        driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

        WebElement selectList = driver.findElement(By.xpath("//select[@name='cars']"));

        Select select = new Select(selectList);

        select.selectByVisibleText("Volvo");

        select.selectByVisibleText("Saab");

    }

}
answered Jul 8, 2019 by Anvi
• 14,150 points

Related Questions In Selenium

0 votes
1 answer
+1 vote
1 answer

Can I select multiple options from a dropdown using Python Selenium webdriver?

Hi Dhwani, you can use following code ...READ MORE

answered Jul 31, 2019 in Selenium by Abha
• 28,140 points
4,533 views
–1 vote
1 answer
0 votes
1 answer

How can I travel forward and back in a browser using selenium?

You can use the Navigate interface to ...READ MORE

answered Dec 31, 2018 in Selenium by Nabarupa
11,924 views
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,764 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,628 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,703 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,565 views
0 votes
1 answer

How can I select an option from a dropdown using Ruby Selenium Webdriver?

Hey Swasti, you can try following lines ...READ MORE

answered Aug 26, 2019 in Selenium by Anvi
• 14,150 points
4,317 views
0 votes
1 answer

How can I refresh a browser window in different ways using Selenium Webdriver?

Hello Piyush, you can refresh a browser ...READ MORE

answered May 29, 2019 in Selenium by Anvi
• 14,150 points
2,921 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