本文整理汇总了Python中pages.treeherder.TreeherderPage.select_busted_failures方法的典型用法代码示例。如果您正苦于以下问题:Python TreeherderPage.select_busted_failures方法的具体用法?Python TreeherderPage.select_busted_failures怎么用?Python TreeherderPage.select_busted_failures使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pages.treeherder.TreeherderPage
的用法示例。
在下文中一共展示了TreeherderPage.select_busted_failures方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_filter_by_test_status
# 需要导入模块: from pages.treeherder import TreeherderPage [as 别名]
# 或者: from pages.treeherder.TreeherderPage import select_busted_failures [as 别名]
def test_filter_by_test_status(base_url, selenium):
"""Open Treeherder page, open Filters Panel, select one filter,
verify results"""
page = TreeherderPage(selenium, base_url).open()
page.filter_unclassified_jobs()
page.click_on_filters_panel()
# Test 'testfailed' unclassified failures
page.deselect_busted_failures()
page.deselect_exception_failures()
if len(page.all_jobs) > 0:
page.open_next_unclassified_failure()
assert 'testfailed' == page.info_panel.job_details.job_result_status
# Test 'busted' unclassified failures
page.select_busted_failures()
page.deselect_testfailed_failures()
if len(page.all_jobs) > 0:
page.close_the_job_panel()
page.open_next_unclassified_failure()
assert 'busted' == page.info_panel.job_details.job_result_status
# Test 'exception' unclassified failures
page.select_exception_failures()
page.deselect_busted_failures()
if len(page.all_jobs) > 0:
page.close_the_job_panel()
page.open_next_unclassified_failure()
assert 'exception' == page.info_panel.job_details.job_result_status