-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathraw_copilot_async.py
More file actions
33 lines (28 loc) · 1.27 KB
/
raw_copilot_async.py
File metadata and controls
33 lines (28 loc) · 1.27 KB
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
28
29
30
31
32
33
import asyncio
from playwright.async_api import async_playwright
from seleniumbase import cdp_driver
async def main():
driver = await cdp_driver.start_async()
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://copilot.microsoft.com")
await page.wait_for_selector("textarea#userInput")
await page.wait_for_timeout(1000)
query = "Playwright Python connect_over_cdp() sync example"
await page.fill("textarea#userInput", query)
await page.click('button[data-testid="submit-button"]')
await page.wait_for_timeout(4000)
await driver.solve_captcha()
await page.wait_for_selector('button[data-testid*="-thumbs-up"]')
await page.wait_for_timeout(4000)
await page.click('button[data-testid*="scroll-to-bottom"]')
await page.wait_for_timeout(3000)
chat_results = '[data-testid="highlighted-chats"]'
result = await page.locator(chat_results).inner_text()
print(result.replace("\n\n", " \n"))
if __name__ == "__main__":
loop = asyncio.new_event_loop()
loop.run_until_complete(main())