Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

1 like 0 dislike
186 views
by The go-to Tester (344 points)
How can we select an option from a combo box in Selenium

1 Answer

0 like 0 dislike
by The go-to Tester (473 points)
selected by
 
Best answer

If the options are under the htmal tag <select> then we can use select method to select the options

Ex: 1st fine the main element under which option are present

element = driver.findElement(By.name("files"));

and then use Select class with theirs methods selectByIndex() to select 

Select select = new Select(element);
select.selectByIndex(3);


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...