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

URL = "https://www.slushy.com/"
UNSUPPORTED_TEXT = "If you wanna see this content"
LOGIN_TEXT = "you must be at least 18"


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


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