This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
昨天使用 Unofficial版本还可以打开浏览器、识别 Log in按钮并进行登录 |
Beta Was this translation helpful? Give feedback.
Answered by
ToviHe
Mar 3, 2023
Replies: 1 comment
-
找到问题了,估计是openai把登录页的Log in元素改了 需要将代码 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ToviHe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
找到问题了,估计是openai把登录页的Log in元素改了
需要将代码
(By.XPATH, "//button[contains(text(), 'Log in')]")
改成
(By.XPATH, "//button[contains(., 'Log in')]")