Open In App

Selecting a drop-down list by using the Selenium.select_by_visible_text() method in Python

Selenium is an effective device for controlling an internet browser through the program. It is purposeful for all browsers, works on all fundamental OS and its scripts are written in numerous languages i.e Python, Java, C#, etc, we can be running with Python.

Different methods of Select class:



we are discussing on visible text method in the drop-down list.

The strategy chooses the alternative by its obvious choice label esteem. It acknowledges the noticeable content estimation of the choice tag and brings nothing back.



Requirement: You need to install chromedriver and set path. Click here to download.for more information follows this link.

Working with Drop-down list: Initially, you have to import the Select class and afterward you have to make the case of Select class. After making the case of Select class, you can perform select strategies on that occasion to choose the choices from the dropdown list.

from selenium.webdriver.support.ui import Select

 for selection by using

drop=Select(driver.find_element_by_id(‘ ‘))

drop.select_by_visible_text(” “)

Example: We will be doing the following:




# importing the modules
from selenium import webdriver
from selenium.webdriver.support.ui import Select
import time
 
# using chrome driver
driver=webdriver.Chrome()
 
# web page url
 
# find id of option
x = driver.find_element_by_id('RESULT_RadioButton-9')
drop=Select(x)
 
# select by visible text
drop.select_by_visible_text("Afternoon")
time.sleep(4)
driver.close()

Output:

Article Tags :