def page_should_not_contain_list(self, locator, message='', loglevel='INFO'):
"""Verifies select list identified by `locator` is not found from current page. See `Page Should Contain Element` for explanation about `message` and
`loglevel` arguments. Key attributes for lists are `id` and `name`. See `introduction` for
details about locating elements.
"""
self._page_should_not_contain_element(locator, 'list', message, loglevel)
方法名:page_should_not_contain_list(self, locator, message='', loglevel='INFO')
相似方法:
公共方法 验证select list 不应该存在于当前页面
接收参数:locator,message='',loglevel='INFO'
10行:使用_page_should_not_contain_element(locator, 'list', message, loglevel)