Selenium2Library系列 keywords 之 _SelectElementKeywords 之 _get_labels_for_options(self, options)

1     def _get_labels_for_options(self, options):
2         labels = []
3         for option in options:
4             labels.append(option.text)
5         return labels

方法名:_get_labels_for_options(self, options)

私有方法 返回options的text数组

接收参数:options集合

时间: 2024-08-02 12:30:06

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 _get_labels_for_options(self, options)的相关文章

Selenium2Library系列 keywords 之 _SelectElementKeywords 之 _get_values_for_options(self, options)

1 def _get_values_for_options(self, options): 2 values = [] 3 for option in options: 4 values.append(option.get_attribute('value')) 5 return values 方法名:_get_values_for_options(self, options) 私有方法 返回options的values数组 接收参数:options集合

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 之 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 之 list_should_have_no_selections(self, locator)

1 def list_should_have_no_selections(self, locator): 2 """Verifies select list identified by `locator` has no selections. 3 4 Select list keywords work on both lists and combo boxes. Key attributes for 5 select lists are `id` and `name`. Se

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

1 def get_list_items(self, locator): 2 """Returns the values in the select 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 `introduction`

Selenium2Library系列 keywords 之 _SelectElementKeywords

# 公有方法 (1)get_list_items(self, locator)  返回labels集合 _get_select_list_options(self, select_list_or_locator)   返回select, select.options _get_labels_for_options(self, options)  返回labels集合 (2)get_selected_list_label(self, locator)  返回首个选中项的label _get_sel

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