tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 38a783d5df92fc57deb010a8dd94f43192399a85
parent 7e528888d7f4af37929e2ae18e4f93f85dfc58e5
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Fri, 21 Nov 2025 21:57:55 +0000

Bug 2000623 - fix webcompat interventions automated tests; r=ksenia

Differential Revision: https://phabricator.services.mozilla.com/D273647

Diffstat:
Mtesting/webcompat/interventions/tests/test_1895997_e_seb_lt.py | 2+-
Mtesting/webcompat/interventions/tests/test_1949152_gatufotogruppen_com.py | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/testing/webcompat/interventions/tests/test_1895997_e_seb_lt.py b/testing/webcompat/interventions/tests/test_1895997_e_seb_lt.py @@ -2,7 +2,7 @@ import pytest URL = "https://e.seb.lt/ib/login" -COOKIES_CSS = "#content-cookie" +COOKIES_CSS = "#cookie-consent-accept-all-btn" UNSUPPORTED_TEXT = "Google Chrome" diff --git a/testing/webcompat/interventions/tests/test_1949152_gatufotogruppen_com.py b/testing/webcompat/interventions/tests/test_1949152_gatufotogruppen_com.py @@ -8,4 +8,4 @@ DESIRED_CSS = ".ultp-block-image" @pytest.mark.without_interventions async def test_regression(client): await client.navigate(URL) - assert client.find_css(DESIRED_CSS, is_displayed=True) + assert client.await_css(DESIRED_CSS, is_displayed=True)