Skip to content

Commit

Permalink
removed ie from browser comparison tests (mozilla#14194)
Browse files Browse the repository at this point in the history
  • Loading branch information
reemhamz authored Feb 8, 2024
1 parent 6ab1c4c commit 1f1c7fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/firefox/browsers/compare/test_browsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


@pytest.mark.nondestructive
@pytest.mark.parametrize("slug", [("chrome"), ("edge"), ("safari"), ("opera"), ("brave"), ("ie")])
@pytest.mark.parametrize("slug", [("chrome"), ("edge"), ("safari"), ("opera"), ("brave")])
def test_menu_list_is_displayed(slug, base_url, selenium):
page = BrowserComparisonPage(selenium, base_url, slug=slug).open()
page.browser_menu_list.click()
Expand All @@ -17,7 +17,7 @@ def test_menu_list_is_displayed(slug, base_url, selenium):

@pytest.mark.skip_if_firefox(reason="Download button only visible to non-Firefox users")
@pytest.mark.nondestructive
@pytest.mark.parametrize("slug", [("chrome"), ("edge"), ("safari"), ("opera"), ("brave"), ("ie")])
@pytest.mark.parametrize("slug", [("chrome"), ("edge"), ("safari"), ("opera"), ("brave")])
def test_download_buttons_are_displayed(slug, base_url, selenium):
page = BrowserComparisonPage(selenium, base_url, slug=slug).open()
assert page.primary_download_button.is_displayed
Expand Down

0 comments on commit 1f1c7fc

Please sign in to comment.