summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1793761_schoolnutritionandfitness_com.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/webcompat/interventions/tests/test_1793761_schoolnutritionandfitness_com.py')
-rw-r--r--testing/webcompat/interventions/tests/test_1793761_schoolnutritionandfitness_com.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/webcompat/interventions/tests/test_1793761_schoolnutritionandfitness_com.py b/testing/webcompat/interventions/tests/test_1793761_schoolnutritionandfitness_com.py
new file mode 100644
index 0000000000..9bb0be584c
--- /dev/null
+++ b/testing/webcompat/interventions/tests/test_1793761_schoolnutritionandfitness_com.py
@@ -0,0 +1,32 @@
+import pytest
+
+URL = "https://www.schoolnutritionandfitness.com/webmenus2/#/view?id=6331c49ce96f1e9c468b45be&siteCode=1641"
+ELEM_CSS = "react-app td > div"
+HEIGHT_CUTOFF = 10
+
+
+def get_elem_height(client):
+ elem = client.await_css(ELEM_CSS, is_displayed=True)
+ assert elem
+ return client.execute_script(
+ """
+ return arguments[0].getBoundingClientRect().height;
+ """,
+ elem,
+ )
+
+
+@pytest.mark.only_platforms("android")
+@pytest.mark.asyncio
+@pytest.mark.with_interventions
+async def test_enabled(client):
+ await client.navigate(URL)
+ assert get_elem_height(client) > HEIGHT_CUTOFF
+
+
+@pytest.mark.only_platforms("android")
+@pytest.mark.asyncio
+@pytest.mark.without_interventions
+async def test_disabled(client):
+ await client.navigate(URL)
+ assert get_elem_height(client) < HEIGHT_CUTOFF