blob: fe7ff20cea255a9feb21db8d7cdbe2b5369eaf4d (
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.axisbank.com/retail/cards/credit-card"
TARGET_CSS = ".loanBox"
@pytest.mark.asyncio
@pytest.mark.with_interventions
async def test_enabled(client):
await client.navigate(URL)
loan_element = client.await_css(TARGET_CSS)
assert client.is_displayed(loan_element)
@pytest.mark.asyncio
@pytest.mark.without_interventions
async def test_disabled(client):
await client.navigate(URL)
assert not client.find_css(TARGET_CSS)
|