今天在看python爬虫视频Selenium过程中遇到报错为

selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <span hidefocus="hidefocus" action="next" class="pager_next ">...</span> is not clickable at point (604, 852). Other element would receive the click: <div class="body-container showData">...</div>
(Session info: chrome=86.0.4240.111)
1
2
原代码为

next_btn = self.driver.find_element_by_xpath("//div[@class='pager_container']/span[last()]")
next_btn.click()
1
2
在网上找到的错误原因大概是因为这个按钮上面还有别的东西覆盖,后来将代码改成

next_btn = self.driver.find_element_by_xpath("//div[@class='pager_container']/span[last()]")
self.driver.execute_script("arguments[0].click();", next_btn)
1
2
即可成功运行
初学爬虫为方便以后查看并且和大家讨论用
————————————————
版权声明:本文为CSDN博主「品源儿」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_45218329/article/details/109430381

发表评论

邮箱地址不会被公开。 必填项已用*标注