10 lines
250 B
Python
10 lines
250 B
Python
from playwright_stealth import Stealth
|
|
|
|
async def stealth_async(page):
|
|
"""
|
|
Apply stealth settings to the page.
|
|
Wrapper around Stealth().apply_stealth_async(page)
|
|
"""
|
|
stealth = Stealth()
|
|
await stealth.apply_stealth_async(page)
|