Source code

Revision control

Copy as Markdown

Other Tools

import pytest
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