34 строки
1.2 KiB
Python
34 строки
1.2 KiB
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
import pytest
|
|
|
|
from pages.home_page import Home
|
|
from pages.link_crawler import LinkCrawler
|
|
|
|
|
|
class TestAboutPage:
|
|
|
|
@pytest.mark.nondestructive
|
|
def test_about_page(self, base_url, selenium):
|
|
home_page = Home(selenium, base_url).open()
|
|
about_mozillians_page = home_page.footer.click_about_link()
|
|
assert about_mozillians_page.is_privacy_section_present
|
|
assert about_mozillians_page.is_get_involved_section_present
|
|
|
|
@pytest.mark.nondestructive
|
|
def test_that_links_in_the_about_page_return_200_code(self, base_url):
|
|
crawler = LinkCrawler(base_url)
|
|
urls = crawler.collect_links('/about', id='main')
|
|
bad_urls = []
|
|
|
|
assert len(urls) > 0
|
|
|
|
for url in urls:
|
|
check_result = crawler.verify_status_code_is_ok(url)
|
|
if check_result is not True:
|
|
bad_urls.append(check_result)
|
|
|
|
assert 0 == len(bad_urls), u'%s bad links found. ' % len(bad_urls) + ', '.join(bad_urls)
|