forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
27 lines (20 loc) · 835 Bytes
/
main.py
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
27
import asyncio
# undetected-undetected_playwright here!
from undetected_playwright.async_api import async_playwright, Playwright
async def run(playwright: Playwright):
args = []
args.append("--disable-blink-features=AutomationControlled")
browser = await playwright.chromium.launch(headless=False,
args=args)
page = await browser.new_page()
await page.goto("https://nowsecure.nl/#relax")
input("Press ENTER to continue to Creep-JS:")
await page.goto("https://nowsecure.nl/#relax")
await page.goto("https://abrahamjuliot.github.io/creepjs/")
input("Press ENTER to exit:")
await browser.close()
async def main():
async with async_playwright() as playwright:
await run(playwright)
if __name__ == "__main__":
asyncio.run(main())