当前位置: 首页>>代码示例>>Python>>正文


Python Select.click方法代码示例

本文整理汇总了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
开发者ID:andrewmalone,项目名称:gmas_webdriver,代码行数:26,代码来源:elements.py


注:本文中的selenium.webdriver.support.select.Select.click方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。