summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1793761_schoolnutritionandfitness_com.py
blob: 9bb0be584ca3e4e25a8a8d90530f8b2db8105915 (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
28
29
30
31
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