What way is the best for selenium select dropdown python?

294    Asked by NatashaKadam in Cyber Security , Asked on Oct 18, 2022

 I would like to select an https://www.janbasktraining.com/blog/webelement-in-selenium/webelement</select>

Answered by Jan Ferguson

I think using selenium.webdriver.support.ui.Select is the cleanest way for selenium select dropdown python:


from selenium import webdriver
from selenium.webdriver.support.ui import Select
b = webdriver.Firefox()
# navigate to the page
select = Select(b.find_element_by_id(....))
print select.options
print [o.text for o in select.options] # these are string-s
select.select_by_visible_text(....)

Using this approach is also the fastest way. I wrote fast_multiselect as analogous function to multiselect_set_selections. On a test with 4 calls to multiselect_set_selections on lists of about 20 items each, the average running time is 16.992 seconds, where fast_multiselect is only 10.441 seconds. Also the latter is much less complicated.

 from selenium.webdriver.support.ui import Select
 def fast_multiselect(driver, element_id, labels):
     select = Select(driver.find_element_by_id(element_id))
     for label in labels:
         select.select_by_visible_text(label)

Your Answer

Interviews

Parent Categories