当前位置: 首页>>代码示例>>Python>>正文


Python CrashStatsHomePage.select_version方法代码示例

本文整理汇总了Python中crash_stats_page.CrashStatsHomePage.select_version方法的典型用法代码示例。如果您正苦于以下问题:Python CrashStatsHomePage.select_version方法的具体用法?Python CrashStatsHomePage.select_version怎么用?Python CrashStatsHomePage.select_version使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在crash_stats_page.CrashStatsHomePage的用法示例。


在下文中一共展示了CrashStatsHomePage.select_version方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_that_selecting_exact_version_doesnt_show_other_versions

# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_version [as 别名]
    def test_that_selecting_exact_version_doesnt_show_other_versions(self, seleniumsetup):
        self.selenium = seleniumsetup.selenium
        csp = CrashStatsHomePage(self.selenium)

        details = csp.current_details
        if len(details['versions']) > 0:
            csp.select_version(details['versions'][1])
        
        Assert.equal(details['product'] + ' ' + details['versions'][1],csp.right_column_heading)

        try:
            centre_name = csp.centre_column_heading
            Assert.fail(centre_name + ' was shown when it shouldnt be there')
        except Exception, e:
            pass
开发者ID:AutomatedTester,项目名称:Socorro-Tests,代码行数:17,代码来源:test_specific_versions.py

示例2: test_that_selecting_exact_version_doesnt_show_other_versions

# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_version [as 别名]
    def test_that_selecting_exact_version_doesnt_show_other_versions(self, testsetup):
        self.selenium = testsetup.selenium
        csp = CrashStatsHomePage(testsetup)

        details = csp.current_details
        if len(details['versions']) > 0:
            csp.select_version(details['versions'][1])

        report_list = csp.click_first_product_top_crashers_link()
        report = report_list.click_first_valid_signature()

        count = 0
        while count < report.row_count:
             count += 1
             report = report_list.get_report(count)
             product = report.product
             version = report.version
             Assert.equal(product, details['product'])
             Assert.contains(version, details['versions'][1])
开发者ID:tobbi,项目名称:Socorro-Tests,代码行数:21,代码来源:test_specific_versions.py


注:本文中的crash_stats_page.CrashStatsHomePage.select_version方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。