本文整理汇总了Python中selenium.webdriver.support.select.Select.click方法的典型用法代码示例。如果您正苦于以下问题:Python Select.click方法的具体用法?Python Select.click怎么用?Python Select.click使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类selenium.webdriver.support.select.Select
的用法示例。
在下文中一共展示了Select.click方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __set__
# 需要导入模块: from selenium.webdriver.support.select import Select [as 别名]
# 或者: from selenium.webdriver.support.select.Select import click [as 别名]
def __set__(self, obj, val):
from selenium.webdriver.support.select import Select as WDSelect
method = "text"
if self.mapping is not None:
val = self.mapping[val]
if "_method" in self.mapping:
method = self.mapping["_method"]
if obj.mode == "old":
elem = WDSelect(obj.find(self.locator))
if method == "text":
elem.select_by_visible_text(val)
elif method == "value":
elem.select_by_value(val)
if obj.mode == "convert":
# click the select to show the list
l = obj.locators[self.locator]
elem = obj.find_element("css=label[id$={}_label]".format(l))
elem.click()
# now click the correct option in the list
options = obj.find_elements("css=div[id$={}_panel] li".format(l))
for item in options:
if item.text == val:
item.click()
break