def test_that_carousels_are_present(self, mozwebqa): channel_pg = ChannelPage(mozwebqa) channel_pg.go_to_channel_page() Assert.true(channel_pg.is_right_carousel_present) Assert.true(channel_pg.is_left_carousel_present)
def test_aurora_sub_page(self, mozwebqa): channel_pg = ChannelPage(mozwebqa) channel_pg.go_to_channel_page() channel_pg.click_aurora_logo()
def test_firefox_sub_page(self, mozwebqa): channel_pg = ChannelPage(mozwebqa) channel_pg.go_to_channel_page() channel_pg.click_firefox_logo()
def test_that_logos_are_present(self, mozwebqa): channel_pg = ChannelPage(mozwebqa) channel_pg.go_to_channel_page() Assert.true(channel_pg.is_beta_logo_present) Assert.true(channel_pg.is_firefox_logo_present) Assert.true(channel_pg.is_aurora_logo_present)