2 回答
TA贡献1821条经验 获得超4个赞
示例链接对我不可用(我无法注册)
第一的..
什么是“字符串”?
书号?或类别编号?
如果它只是随机字符串,我认为您应该找到另一种方法。
使用ActionChain怎么样?或driver.execute_script()?
首先,在我看来,找到字符串的含义(来自 .js 或 .html)更重要。
TA贡献1829条经验 获得超6个赞
我需要帮助来识别下一页按钮的 xpath。我的目标是遍历 Python Selenium 中的页面。请在此图片上的 URL 页面上查看后找到下一页按钮的代码。
检查后的下一页按钮图片
我尝试使用 selenium 在 python 中编写以下代码以逐页下载文件。
while True:
scraping() # here I call my function that allows to download the files per page
try:
#Checks if there are more pages with links
next_link = driver.find_element_by_xpath("//*[@title='Page suivante']")
drive.execute_script("arguments[0].scrollIntoView();", next_link)
next_link.click()
#Time sleep
time.sleep(20)
except NoSuchElementException:
pages_rows= False
添加回答
举报