本文整理汇总了Python中crash_stats_page.CrashStatsHomePage.select_report方法的典型用法代码示例。如果您正苦于以下问题:Python CrashStatsHomePage.select_report方法的具体用法?Python CrashStatsHomePage.select_report怎么用?Python CrashStatsHomePage.select_report使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类crash_stats_page.CrashStatsHomePage
的用法示例。
在下文中一共展示了CrashStatsHomePage.select_report方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_that_current_version_selected_in_top_crashers_by_domain_header_for_firefox
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_current_version_selected_in_top_crashers_by_domain_header_for_firefox(self, seleniumsetup):
self.selenium = seleniumsetup.selenium
csp = CrashStatsHomePage(self.selenium)
if not csp.can_find_text('no data'):
details = csp.current_details
cstc = csp.select_report('Top Crashers by Domain')
Assert.equal(details['product'], cstc.product_header)
示例2: test_that_current_version_selected_in_top_crashers_by_url_header_for_seamonkey
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_current_version_selected_in_top_crashers_by_url_header_for_seamonkey(self, seleniumsetup):
self.selenium = seleniumsetup.selenium
csp = CrashStatsHomePage(self.selenium)
csp.select_product('SeaMonkey')
if not csp.can_find_text('no data'):
details = csp.current_details
cstc = csp.select_report('Top Crashers by URL')
Assert.equal(details['product'], cstc.product_header)
示例3: test_that_current_version_selected_in_top_crashers_header_for_fennec
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_current_version_selected_in_top_crashers_header_for_fennec(self, testsetup):
self.selenium = testsetup.selenium
csp = CrashStatsHomePage(testsetup)
csp.select_product('Fennec')
if not csp.can_find_text('no data'):
details = csp.current_details
cstc = csp.select_report('Top Crashers')
Assert.equal(details['product'], cstc.product_header)
示例4: test_that_reports_form_has_same_product_for_firefox
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_reports_form_has_same_product_for_firefox(self, testsetup):
self.selenium = testsetup.selenium
csp = CrashStatsHomePage(testsetup)
page_title = csp.page_title
Assert.true('Firefox' in page_title)
crash_adu = csp.select_report("Crashes per User")
details = csp.current_details
report_product = crash_adu.product_select
Assert.equal(details['product'],report_product)
示例5: test_that_reports_form_has_same_product_for_fennec
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_reports_form_has_same_product_for_fennec(self, testsetup):
self.selenium = testsetup.selenium
csp = CrashStatsHomePage(testsetup)
csp.select_product('Fennec')
page_title = csp.page_title
Assert.true('Fennec' in page_title)
if not csp.can_find_text('no data'):
crash_adu = csp.select_report("Crashes per User")
details = csp.current_details
report_product = crash_adu.product_select
Assert.equal(details['product'],report_product)
示例6: test_that_reports_form_has_same_product_for_thunderbird
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_reports_form_has_same_product_for_thunderbird(self, seleniumsetup):
self.selenium = seleniumsetup.selenium
csp = CrashStatsHomePage(self.selenium)
csp.select_product('Thunderbird')
page_title = csp.page_title
Assert.true('Thunderbird' in page_title)
Assert.true('Mozilla' in page_title)
if not csp.can_find_text('no data'):
crash_adu = csp.select_report("Crashes per User")
details = csp.current_details
report_product = crash_adu.product_select
Assert.equal(details['product'],report_product)
示例7: test_that_reports_form_has_same_product_for_fennec
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_reports_form_has_same_product_for_fennec(self, seleniumsetup):
self.selenium = seleniumsetup.selenium
csp = CrashStatsHomePage(self.selenium)
csp.select_product('Fennec')
page_title = csp.page_title
Assert.true('Fennec' in page_title)
#Bug 576721 - Needs reenabled when fixed
#Assert.true('Mozilla' not in page_title)
if not csp.can_find_text('no data'):
crash_adu = csp.select_report("Crashes per User")
details = csp.current_details
report_product = crash_adu.product_select
Assert.equal(details['product'],report_product)
示例8: test_that_current_version_selected_in_top_crashers_by_url_header_for_firefox
# 需要导入模块: from crash_stats_page import CrashStatsHomePage [as 别名]
# 或者: from crash_stats_page.CrashStatsHomePage import select_report [as 别名]
def test_that_current_version_selected_in_top_crashers_by_url_header_for_firefox(self, seleniumsetup):
self.selenium = seleniumsetup.selenium
csp = CrashStatsHomePage(self.selenium)
details = csp.current_details
cstc = csp.select_report('Top Crashers by URL')
Assert.equal(details['product'], cstc.product_header)