summaryrefslogtreecommitdiffstats
path: root/testing/webcompat/interventions/tests/test_1830796_copyleaks_com.py
blob: 56817c705b40127f34a975aaa1d1c58686cc2d65 (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 time

import pytest

URL = "https://copyleaks.com/ai-content-detector"
IFRAME_CSS = "#ai-content-detector"
UNSUPPORTED_CSS = "#outdated"


@pytest.mark.only_platforms("android")
@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
    await client.navigate(URL)
    client.switch_to_frame(client.await_css(IFRAME_CSS))
    time.sleep(2)
    assert not client.find_css(UNSUPPORTED_CSS, is_displayed=True)


@pytest.mark.only_platforms("android")
@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
    await client.navigate(URL)
    client.switch_to_frame(client.await_css(IFRAME_CSS))
    assert client.await_css(UNSUPPORTED_CSS, is_displayed=True)