Ejemplo n.º 1
0
 def test_that_server_status_page_loads(self, mozwebqa):
     csp = CrashStatsHomePage(mozwebqa)
     csstat = csp.click_server_status()
     try:
         csstat.at_a_glance()
     except Exception, e:
         Assert.fail(str(e))
Ejemplo n.º 2
0
    def test_that_server_status_page_loads(self, mozwebqa):
        csp = CrashStatsHomePage(mozwebqa)
        csstat = csp.click_server_status()

        Assert.true(csstat.is_at_a_glance_present, 'Server summary not found')
        Assert.true(csstat.are_graphs_present, '4 graphs not found')
        Assert.true(csstat.is_latest_raw_stats_present, 'Raw stats not found')
Ejemplo n.º 3
0
    def test_that_server_status_page_loads(self, mozwebqa):
        csp = CrashStatsHomePage(mozwebqa)
        csstat = csp.click_server_status()

        Assert.true(csstat.is_at_a_glance_present(),
                    'Server summary not found')
        Assert.true(csstat.are_graphs_present(), '4 graphs not found')
        Assert.true(csstat.is_latest_raw_stats_present(),
                    'Raw stats not found')