-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathraw_gitlab_async.py
More file actions
26 lines (21 loc) · 932 Bytes
/
raw_gitlab_async.py
File metadata and controls
26 lines (21 loc) · 932 Bytes
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 asyncio
from playwright.async_api import async_playwright
from seleniumbase import cdp_driver
async def main():
driver = await cdp_driver.start_async(locale="en", agent="headless")
endpoint_url = driver.get_endpoint_url()
async with async_playwright() as p:
browser = await p.chromium.connect_over_cdp(endpoint_url)
context = browser.contexts[0]
page = context.pages[0]
await page.goto("https://gitlab.com/users/sign_in")
await page.wait_for_timeout(3000)
await driver.solve_captcha()
await page.wait_for_timeout(1000)
await page.locator('label[for="user_login"]').click()
await page.wait_for_selector('[data-testid="sign-in-button"]')
await page.locator("#user_login").fill("Username")
await page.wait_for_timeout(2000)
if __name__ == "__main__":
loop = asyncio.new_event_loop()
loop.run_until_complete(main())