无法找到第三个 div 元素
driver.find_elements(By.XPATH, '/html/body/div[1]/div/div[6]/div[1]/div[2]/div[2]')
上面的元素由 selenium chrome 驱动程序返回,但下面的元素(具有 main-content-row 类的 div)不是。
driver.find_elements(By.XPATH, '/html/body/div[1]/div/div[6]/div[1]/div[2]/div[3]')
driver.find_elements(By.XPATH, '/html/body/div[1]/div/div[6]/div[1]/div[2]/div[2]')
The above element is returned by the selenium chrome driver but the below element (div with main-content-row class) is not.
driver.find_elements(By.XPATH, '/html/body/div[1]/div/div[6]/div[1]/div[2]/div[3]')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试提供相对 XPath,
或者
注意:XPath 可能不正确,因为给定的信息不足以提供准确的相对 XPath。如果不起作用,请进行您需要的修改。
Try providing the relative xpath,
or
Note: The XPaths can be incorrect because the given information are not enough to provide the exact relative XPath. Please do the modifications you need if it is not working.