コード例 #1
0
 def test_projects_links_are_visible(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     bad_links = []
     for link in projects_page.projects_links_list:
         if not projects_page.is_element_visible(*link.get('locator')):
             bad_links.append('The link at %s is not visible' % link.get('locator')[1:])
     Assert.equal(0, len(bad_links), '%s bad links found: ' % len(bad_links) + ', '.join(bad_links))
コード例 #2
0
 def test_projects_link_destinations_are_correct(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     bad_links = []
     for link in projects_page.projects_links_list:
         url = projects_page.link_destination(link.get('locator'))
         if not url.endswith(link.get('url_suffix')):
             bad_links.append('%s does not end with %s' % (url, link.get('url_suffix')))
     Assert.equal(0, len(bad_links), '%s bad links found: ' % len(bad_links) + ', '.join(bad_links))
コード例 #3
0
 def test_projects_link_urls_are_valid(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     bad_urls = []
     for link in projects_page.projects_links_list:
         url = projects_page.link_destination(link.get('locator'))
         response_code = projects_page.get_response_code(url)
         if response_code != requests.codes.ok:
             bad_urls.append('%s is not a valid url - status code: %s.' % (url, response_code))
     Assert.equal(0, len(bad_urls), '%s bad urls found: ' % len(bad_urls) + ', '.join(bad_urls))
コード例 #4
0
 def test_tabzilla_links_are_correct(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     Assert.true(projects_page.header.is_tabzilla_panel_visible)
     projects_page.header.toggle_tabzilla_dropdown()
     bad_links = []
     for link in Projects.Header.tabzilla_links_list:
         url = projects_page.link_destination(link.get('locator'))
         if not url.endswith(link.get('url_suffix')):
             bad_links.append('%s does not end with %s' % (url, link.get('url_suffix')))
     Assert.equal(0, len(bad_links), '%s bad links found: ' % len(bad_links) + ', '.join(bad_links))
コード例 #5
0
ファイル: test_projects.py プロジェクト: HydeSun/mcom-tests
 def test_projects_links_are_visible(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     bad_links = []
     for link in projects_page.projects_links_list:
         if not projects_page.is_element_visible(*link.get('locator')):
             bad_links.append('The link at %s is not visible' %
                              link.get('locator')[1:])
     Assert.equal(
         0, len(bad_links),
         '%s bad links found: ' % len(bad_links) + ', '.join(bad_links))
コード例 #6
0
ファイル: test_projects.py プロジェクト: HydeSun/mcom-tests
 def test_projects_link_destinations_are_correct(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     bad_links = []
     for link in projects_page.projects_links_list:
         url = projects_page.link_destination(link.get('locator'))
         if not url.endswith(link.get('url_suffix')):
             bad_links.append('%s does not end with %s' %
                              (url, link.get('url_suffix')))
     Assert.equal(
         0, len(bad_links),
         '%s bad links found: ' % len(bad_links) + ', '.join(bad_links))
コード例 #7
0
ファイル: test_projects.py プロジェクト: HydeSun/mcom-tests
 def test_tabzilla_links_are_correct(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     Assert.true(projects_page.header.is_tabzilla_panel_visible)
     projects_page.header.toggle_tabzilla_dropdown()
     bad_links = []
     for link in Projects.Header.tabzilla_links_list:
         url = projects_page.link_destination(link.get('locator'))
         if url.find(link.get('url_suffix')) < 1:
             bad_links.append('%s does not end with %s' %
                              (url, link.get('url_suffix')))
     Assert.equal(
         0, len(bad_links),
         '%s bad links found: ' % len(bad_links) + ', '.join(bad_links))
コード例 #8
0
ファイル: test_projects.py プロジェクト: HydeSun/mcom-tests
 def test_billboard_link_urls_are_valid(self, mozwebqa):
     projects_page = Projects(mozwebqa)
     projects_page.go_to_page()
     bad_urls = []
     for link in projects_page.billboard_links_list:
         url = projects_page.link_destination(link.get('locator'))
         response_code = projects_page.get_response_code(url)
         if response_code != requests.codes.ok:
             bad_urls.append('%s is not a valid url - status code: %s.' %
                             (url, response_code))
     Assert.equal(
         0, len(bad_urls),
         '%s bad urls found: ' % len(bad_urls) + ', '.join(bad_urls))