本文是本人python爬虫学习时候,遇到的常见问题
环境:
python3.6 + selenium 3.11 + chromedriver.exe
错误简述:
Element * is not clickable at point,Other element would receive the click
功能需求:
点击查看更多,获取页面数据
源代码如下
show_more = driver.find_element_by_xpath('//tbody[@class="ant-table-tbody"]/tr/td/a')
show_more.click()
报错信息:
selenium.common.exceptions.WebDriverException: Message: unknown error:
Element * is not clickable at point (817, 751).
Other element would receive the click: *
错误解释:
a标签被点击时,被上一层td标签接收了点击,说明a标签被覆盖了!
解决办法:
show_more = driver.find_element_by_xpath('//tbody[@class="ant-table-tbody"]/tr/td/a')
##方法1
show_more.send_keys('\n')
show_more.click()
##方法2
show_more.send_keys(Keys.SPACE)
show_more.click()
# 方法3
driver.execute_script("arguments[0].click();", show_more)
如有问题请评论区留言!
主题授权提示:请在后台主题设置-主题授权-激活主题的正版授权,授权购买:RiTheme官网
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。部分内容资源来源于互联网,如若本站内容侵犯了原著者的合法权益,可联系我们进行删除处理。