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 Se... 阅读全文
摘要:
1 def list_selection_should_be(self, locator, *items): 2 """Verifies the selection of select list identified by `locator` is exactly `*it... 阅读全文
摘要:
1 def _get_values_for_options(self, options):2 values = []3 for option in options:4 values.append(option.get_attribut... 阅读全文
摘要:
1 def page_should_contain_list(self, locator, message='', loglevel='INFO'): 2 """Verifies select list identified by `locator` is found fr... 阅读全文