Skip to content

tracy/Fix failing test on Linux #731

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from platform import system

import pytest
from selenium.webdriver import Firefox

Expand All @@ -26,7 +24,6 @@ def temp_selectors():
TEST_URL = "https://addons.mozilla.org/en-US/firefox/addon/popup-blocker/"


@pytest.mark.skipif(system().lower().startswith("linux"), reason="Bug 1983280")
def test_webextension_completed_installation_successfully_displayed(
driver: Firefox, temp_selectors
):
Expand All @@ -46,11 +43,12 @@ def test_webextension_completed_installation_successfully_displayed(
nav.click_on("popup-notification-add")

# The WebExtension completed installation panel is successfully displayed
nav.element_visible("popup-notification-panel")
nav.expect_element_attribute_contains(
"popup-notification-primary-button", "label", "OK"
"popup-notification-panel", "name", "Popup Blocker (strict)"
)
nav.expect_element_attribute_contains(
"popup-notification-panel", "name", "Popup Blocker (strict)"
"popup-notification-primary-button", "label", "OK"
)
nav.expect_element_attribute_contains(
"popup-notification-panel", "endlabel", " was added."
Expand Down