summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1719846_covid_cdc_gov.py
blob: 253ea6167eee20eb49eb9caaafda6a0f3f3098b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import pytest

URL = "https://covid.cdc.gov/covid-data-tracker/#pandemic-vulnerability-index"


IFRAME_CSS = "#pviIframe"
UNSUPPORTED_TEXT = "not support Internet Explorer"


@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    await client.navigate(URL)
    assert client.await_css(IFRAME_CSS)


@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    await client.navigate(URL)
    assert client.await_text(UNSUPPORTED_TEXT)