summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_969844_mobile_de.py
blob: ddde96e0d4de54c8935af75fadbdf46223eb49d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)