Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_from_list_by_value(self, locator, *values)

     def select_from_list_by_value(self, locator, *values):
"""Selects `*values` from list identified by `locator` Select list keywords work on both lists and combo boxes. Key attributes for
select lists are `id` and `name`. See `introduction` for details about
locating elements.
"""
if not values:
raise ValueError("No value given.")
items_str = "value(s) '%s'" % ", ".join(values)
self._info("Selecting %s from list '%s'." % (items_str, locator)) select = self._get_select_list(locator)
for value in values:
select.select_by_value(value)

方法名:select_from_list_by_value(self, locator, *values)

相似方法:

公共方法 选中所有values项

接收参数:locator,*values

13行:使用_get_select_list(self, locator)方法,返回Select对象

上一篇:拼图 canvas分割 dom拖拽 pc 移动端


下一篇:JAVAWEB 一一 fmt标签 和日期插件