예제 #1
0
 def test_footer_link_destinations_are_correct(self, base_url, selenium):
     page = HomePage(base_url, selenium).open()
     bad_links = []
     for link in HomePage.Footer.footer_links_list:
         url = 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 [] == bad_links
예제 #2
0
 def test_sign_up_form_link_destinations_are_correct(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_links = []
     for link in home_page.sign_up_form_link_list:
         url = home_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_sign_up_form_link_destinations_are_correct(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_links = []
     for link in home_page.sign_up_form_link_list:
         url = home_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 [] == bad_links
예제 #4
0
 def test_footer_link_destinations_are_correct(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_links = []
     for link in HomePage.Footer.footer_links_list:
         url = home_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
 def test_footer_links_are_valid(self, base_url, selenium):
     page = HomePage(base_url, selenium).open()
     bad_urls = []
     for link in HomePage.Footer.footer_links_list:
         url = page.link_destination(link.get('locator'))
         response_code = 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 [] == bad_urls
예제 #6
0
 def test_sign_up_form_link_destinations_are_correct(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_links = []
     for link in home_page.sign_up_form_link_list:
         url = home_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 [] == bad_links
예제 #7
0
 def test_sign_up_form_link_urls_are_valid(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_urls = []
     for link in home_page.sign_up_form_link_list:
         url = home_page.link_destination(link.get('locator'))
         response_code = home_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))
예제 #8
0
 def test_footer_links_are_valid(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_urls = []
     for link in HomePage.Footer.footer_links_list:
         url = home_page.link_destination(link.get('locator'))
         response_code = home_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 [] == bad_urls
예제 #9
0
 def test_footer_links_are_valid(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_urls = []
     for link in HomePage.Footer.footer_links_list:
         url = home_page.link_destination(link.get('locator'))
         response_code = home_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 links found: ' % len(bad_urls) + ', '.join(bad_urls))
예제 #10
0
 def test_major_link_urls_are_valid(self, mozwebqa):
     home_page = HomePage(mozwebqa)
     home_page.go_to_page()
     bad_urls = []
     for link in home_page.major_links_list:
         url = home_page.link_destination(link.get('locator'))
         response_code = home_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 [] == bad_urls
예제 #11
0
 def test_sign_up_form_links(self, base_url, selenium):
     page = HomePage(base_url, selenium).open()
     for link in page.sign_up_form_link_list:
         url = page.link_destination(link.get('locator'))
         assert url.endswith(link.get('url_suffix'))
         assert requests.codes.ok == page.get_response_code(url)