summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1800936_cov19ent_kdca_go_kr.py
blob: e0384a8641985f0d3bc982963578c06f443e6fdf (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://cov19ent.kdca.go.kr/"
HEADER_CSS = "header.mouseOn"


async def get_header_position(client):
    await client.navigate(URL)
    return client.execute_script(
        f"""
        const r = document.querySelector("{HEADER_CSS}");
        return window.getComputedStyle(r).position;
    """
    )


@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    assert "absolute" == await get_header_position(client)


@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    assert "absolute" != await get_header_position(client)