forked from mdmintz/undetected-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_chatgpt.py
26 lines (25 loc) · 1 KB
/
raw_chatgpt.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
from contextlib import suppress
from seleniumbase import SB
with SB(uc=True, test=True) as sb:
url = "https://chatgpt.com/"
sb.activate_cdp_mode(url)
sb.sleep(1)
sb.uc_gui_click_captcha()
sb.sleep(1)
sb.uc_gui_handle_captcha()
sb.sleep(1)
sb.click_if_visible('button[aria-label="Close dialog"]')
query = "Compare Playwright to SeleniumBase in under 178 words"
sb.press_keys("#prompt-textarea", query)
sb.click('button[data-testid="send-button"]')
print('*** Input for ChatGPT: ***\n"%s"' % query)
sb.sleep(3)
with suppress(Exception):
# The "Stop" button disappears when ChatGPT is done typing a response
sb.wait_for_element_not_visible(
'button[data-testid="stop-button"]', timeout=20
)
chat = sb.find_element('[data-message-author-role="assistant"] .markdown')
soup = sb.get_beautiful_soup(chat.get_html()).get_text("\n").strip()
print("*** Response from ChatGPT: ***\n%s" % soup.replace("\n:", ":"))
sb.sleep(3)