-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug报告 #3
Comments
WebDriverWait(driver, timeout=10).until(lambda d: d.find_element(By.CLASS_NAME, "AnswerItem-editButtonText")):需要给出这个example pages = driver.find_elements(By.CLASS_NAME, 'PaginationButton')[-2] |
第二个问题已经修复了 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WebDriverWait(driver, timeout=10).until(lambda d: d.find_element(By.CLASS_NAME, "AnswerItem-editButtonText"))
如果答案无编辑,会无法继续,可通过try语句缓解,是否有次生bug未知
pages = driver.find_elements(By.CLASS_NAME, 'PaginationButton')[-2]
如果只有一页会无法继续,可通过try语句缓解,是否有次生bug未知
The text was updated successfully, but these errors were encountered: