摘要:
#公有方法:(1)current_frame_contains(self, text, loglevel='INFO')(2)current_frame_should_not_contain(self, text, loglevel='INFO')(3)element_should_contain(... 阅读全文
摘要:
1 def unselect_from_list_by_label(self, locator, *labels): 2 """Unselects `*labels` from list identified by `locator` 3 4 Select... 阅读全文
摘要:
1 def unselect_from_list_by_value(self, locator, *values): 2 """Unselects `*values` from list identified by `locator` 3 4 Select... 阅读全文
摘要:
1 def unselect_from_list_by_index(self, locator, *indexes): 2 """Unselects `*indexes` from list identified by `locator` 3 4 Sele... 阅读全文
摘要:
1 def unselect_from_list(self, locator, *items): 2 """Unselects given values from select list identified by locator. 3 4 As a sp... 阅读全文
摘要:
1 def select_from_list_by_label(self, locator, *labels): 2 """Selects `*labels` from list identified by `locator` 3 4 Select lis... 阅读全文
摘要:
1 def select_from_list_by_value(self, locator, *values): 2 """Selects `*values` from list identified by `locator` 3 4 Select lis... 阅读全文
摘要:
1 def select_from_list(self, locator, *items): 2 """Selects `*items` from list identified by `locator` 3 4 If more than one valu... 阅读全文
摘要:
1 def select_all_from_list(self, locator): 2 """Selects all values from multi-select list identified by `id`. 3 4 Key attributes... 阅读全文
摘要:
1 def page_should_not_contain_list(self, locator, message='', loglevel='INFO'): 2 """Verifies select list identified by `locator` is not ... 阅读全文