summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1836116_www_slushy_com.py
blob: 69c5d1d1a3cd4cb89a7fb0a74d7c52084023d1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import pytest

URL = "https://www.slushy.com/"


# skip Android, as the site blocks low-res devices like the emulator
@pytest.mark.skip_platforms("android")
@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    await client.navigate(URL, wait="load")
    assert not client.execute_script("return location.href.includes('unsupported')")


@pytest.mark.skip_platforms("android")
@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    await client.navigate(URL, wait="load")
    assert client.execute_script("return location.href.includes('unsupported')")