我在Python Selenium中使用了Select,但是无法选择值

时间:2018-10-25 07:56:09

标签: python selenium

我在Python中使用单元测试,在Python Selenium中使用了Select,但是无法选择值,因此建议我从下拉框中选择值

请检查以下是我的代码:

self.login_element= Select(self.driver.find_element_by_xpath('//*[@name="field_DOBDay"]'))

        self.login_element.select_by_visible_text('01')
        self.login_element.select_by_index('1')
        self.login_element.select_by_value('1')

1 个答案:

答案 0 :(得分:0)

我没有有关您的html来源的信息,

请尝试使用带有特定optionText的以下代码,option_text应该与选项文本完全匹配:

find_element_by_xpath("//*[@name="field_DOBDay"]/option[text()='option_text']").click()