summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1836157_thai_masszazs_net.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/webcompat/interventions/tests/test_1836157_thai_masszazs_net.py')
-rw-r--r--testing/webcompat/interventions/tests/test_1836157_thai_masszazs_net.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/webcompat/interventions/tests/test_1836157_thai_masszazs_net.py b/testing/webcompat/interventions/tests/test_1836157_thai_masszazs_net.py
new file mode 100644
index 0000000000..66f25283fd
--- /dev/null
+++ b/testing/webcompat/interventions/tests/test_1836157_thai_masszazs_net.py
@@ -0,0 +1,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)