Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_all_from_list(self, locator)

 1     def select_all_from_list(self, locator):
 2         """Selects all values from multi-select list identified by `id`.
 3
 4         Key attributes for lists are `id` and `name`. See `introduction` for
 5         details about locating elements.
 6         """
 7         self._info("Selecting all options from list ‘%s‘." % locator)
 8
 9         select = self._get_select_list(locator)
10         if not select.is_multiple:
11             raise RuntimeError("Keyword ‘Select all from list‘ works only for multiselect lists.")
12
13         for i in range(len(select.options)):
14             select.select_by_index(i)

方法名:select_all_from_list(self, locator)

公共方法 选中所有选项,适用于multi-select list

接收参数:locator

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

13、14行:遍历所有options,并选中

使用:

输出结果:

INFO : Selecting all options from list ‘id=creOutTime‘.
时间: 2024-11-08 03:40:15

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_all_from_list(self, locator)的相关文章

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 page_should_contain_list(self, locator, message='', loglevel='INFO')

1 def page_should_contain_list(self, locator, message='', loglevel='INFO'): 2 """Verifies select list identified by `locator` is found from current page. 3 4 See `Page Should Contain Element` for explanation about `message` and 5 `loglevel`

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 page_should_not_contain_list(self, locator, message='', loglevel='INFO')

1 def page_should_not_contain_list(self, locator, message='', loglevel='INFO'): 2 """Verifies select list identified by `locator` is not found from current page. 3 4 See `Page Should Contain Element` for explanation about `message` and 5 `l

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_label(self, locator, *labels)

1 def unselect_from_list_by_label(self, locator, *labels): 2 """Unselects `*labels` from list identified by `locator` 3 4 Select list keywords work on both lists and combo boxes. Key attributes for 5 select lists are `id` and `name`. See `i

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_from_list(self, locator, *items)

1 def select_from_list(self, locator, *items): 2 """Selects `*items` from list identified by `locator` 3 4 If more than one value is given for a single-selection list, the last 5 value will be selected. If the target list is a multi-selecti

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list(self, locator, *items)

1 def unselect_from_list(self, locator, *items): 2 """Unselects given values from select list identified by locator. 3 4 As a special case, giving empty list as `*items` will remove all 5 selections. 6 7 *items try to unselect by value AND

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 list_selection_should_be(self, locator, *items)

1 def list_selection_should_be(self, locator, *items): 2 """Verifies the selection of select list identified by `locator` is exactly `*items`. 3 4 If you want to test that no option is selected, simply give no `items`. 5 6 Select list keywo

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

1 def unselect_from_list_by_value(self, locator, *values): 2 """Unselects `*values` from list identified by `locator` 3 4 Select list keywords work on both lists and combo boxes. Key attributes for 5 select lists are `id` and `name`. See `i

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_index(self, locator, *indexes)

1 def unselect_from_list_by_index(self, locator, *indexes): 2 """Unselects `*indexes` from list identified by `locator` 3 4 Select list keywords work on both lists and combo boxes. Key attributes for 5 select lists are `id` and `name`. See

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

1 def select_from_list_by_value(self, locator, *values): 2 """Selects `*values` from list identified by `locator` 3 4 Select list keywords work on both lists and combo boxes. Key attributes for 5 select lists are `id` and `name`. See `intro