()
| 83 | @pytest.mark.asyncio |
| 84 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 85 | async def test_alps_new_endpoint(): |
| 86 | url = "https://google.com" |
| 87 | client = rnet.Client(impersonate=Impersonate.Chrome133) |
| 88 | response = await client.get(url) |
| 89 | text = await response.text() |
| 90 | assert text is not None |