コード例 #1
0
ファイル: test_layout.py プロジェクト: ivyshushu/Addon-Tests
 def test_that_other_applications_link_has_tooltip(self, mozwebqa):
     """
     Test for Litmus 22925.
     https://litmus.mozilla.org/show_test.cgi?id=29698
     """
     home_page = Home(mozwebqa)
     tooltip = home_page.get_title_of_link('Other applications')
     Assert.equal(tooltip, 'Find add-ons for other applications')
コード例 #2
0
 def test_that_other_applications_link_has_tooltip(self, mozwebqa):
     """
     Test for Litmus 22925.
     https://litmus.mozilla.org/show_test.cgi?id=29698
     """
     home_page = Home(mozwebqa)
     tooltip = home_page.get_title_of_link("Other applications")
     Assert.equal(tooltip, "Find add-ons for other applications")
コード例 #3
0
 def test_that_other_applications_link_has_tooltip(self, mozwebqa):
     home_page = Home(mozwebqa)
     tooltip = home_page.get_title_of_link('Other applications')
     Assert.equal(tooltip, 'Find add-ons for other applications')
コード例 #4
0
 def test_that_other_applications_link_has_tooltip(self, mozwebqa):
     home_page = Home(mozwebqa)
     tooltip = home_page.get_title_of_link('Other applications')
     Assert.equal(tooltip, 'Find add-ons for other applications')
コード例 #5
0
 def test_that_other_applications_link_has_tooltip(self, base_url,
                                                   selenium):
     home_page = Home(base_url, selenium)
     tooltip = home_page.get_title_of_link('Other applications')
     assert 'Find add-ons for other applications' == tooltip
コード例 #6
0
ファイル: test_layout.py プロジェクト: APRODEV/Addon-Tests
 def test_that_other_applications_link_has_tooltip(self, base_url, selenium):
     home_page = Home(base_url, selenium)
     tooltip = home_page.get_title_of_link('Other applications')
     assert 'Find add-ons for other applications' == tooltip