summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1836157_thai_masszazs_net.py
blob: 66f25283fdb88ee72cfb29f420321615c0479b02 (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
import pytest

URL = "https://www.thai-masszazs.net/"


async def is_scrolling_broken(client):
    await client.navigate(URL)
    return client.execute_script(
        """
            return document.querySelector("html").style.overflow == "hidden"
        """
    )


@pytest.mark.only_platforms("android")
@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    assert not await is_scrolling_broken(client)


@pytest.mark.only_platforms("android")
@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    assert await is_scrolling_broken(client)