-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathraw_chatgpt_gha.py
39 lines (37 loc) · 1.14 KB
/
raw_chatgpt_gha.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
28
29
30
31
32
33
34
35
36
37
38
39
import os
from seleniumbase import SB
try:
proxy = os.environ["proxy_1"]
except Exception:
proxy = None
with SB(uc=True, test=True, proxy=proxy) as sb:
url = "https://chatgpt.com/"
sb.uc_open_with_reconnect(url, 2.5)
sb.uc_gui_click_captcha()
sb.sleep(0.75)
sb.uc_gui_handle_captcha()
sb.disconnect()
sb.sleep(0.75)
query = "Compare Playwright to SeleniumBase in under 178 words"
sb.uc_gui_write(query)
sb.uc_gui_press_key("ENTER")
print('*** Input for ChatGPT: ***\n"%s"' % query)
sb.sleep(10)
sb.connect()
success = False
try:
chat = sb.find_element(
'[data-message-author-role="assistant"] .markdown'
)
soup = sb.get_beautiful_soup(chat.get_attribute("outerHTML"))
soup = soup.get_text("\n").strip()
soup = soup.replace("\n\n\n", "\n\n")
soup = soup.replace("\n\n\n", "\n\n")
print("*** Response from ChatGPT: ***\n%s" % soup)
success = True
except Exception:
print(sb.get_page_source())
finally:
if not success:
print("\n Unable to find ChatGPT response in HTML!")
sb.sleep(1)