Bug 969844 - remove our webcompat UA override for mobile.de; r=denschub,webcompat-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D241920
This commit is contained in:
Thomas Wisniewski
2025-03-18 17:44:07 +00:00
parent 9b211b5203
commit 36b078629b
2 changed files with 0 additions and 42 deletions

View File

@@ -1,19 +1,4 @@
{
"969844": {
"label": "mobile.de",
"bugs": {
"969844": {
"issue": "desktop-layout-not-mobile",
"matches": ["*://*.mobile.de/*"]
}
},
"interventions": [
{
"platforms": ["android"],
"ua_string": ["add_Chrome"]
}
]
},
"1385206": {
"label": "rakuten.co.jp",
"bugs": {

View File

@@ -1,27 +0,0 @@
import pytest
# The site serves a different mobile page to Firefox than Chrome
URL = "https://www.mobile.de/"
COOKIES_CSS = "button.mde-consent-accept-btn"
MOBILE_MENU_CSS = "header [data-testid='mobile-navigation-menu']"
@pytest.mark.only_platforms("android")
@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
await client.navigate(URL)
client.soft_click(client.await_css(COOKIES_CSS))
mobile_menu = client.await_css(MOBILE_MENU_CSS)
assert client.is_displayed(mobile_menu)
@pytest.mark.only_platforms("android")
@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
await client.navigate(URL)
client.soft_click(client.await_css(COOKIES_CSS))
mobile_menu = client.await_css(MOBILE_MENU_CSS)
assert not client.is_displayed(mobile_menu)