selenium中出现 Other element would receive the click的解决方式

这篇具有很好参考价值的文章主要介绍了selenium中出现 Other element would receive the click的解决方式。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

用Python利用selenium操作点击复选框的时候,出现 Other element would receive the click错误。

要点击的复选框情况如图:

selenium中出现 Other element would receive the click的解决方式,selenium,测试工具

 selenium中出现 Other element would receive the click的解决方式,selenium,测试工具

首次的时候,我用以下代码定位到复选框,并且点击

alert_input = WebDriverWait(driver, 5).until(EC.presence_of_element_located((By.XPATH, '//input[@name="isMarketingEnabled" and @type="checkbox"]')))
alert_input.click()

能定位到这个input,但是在click时报错,信息如下:

selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <input type="checkbox" name="isMarketingEnabled" class="css-jiaquy" value=""> is not clickable at point (559, 419). 
Other element would receive the click: <div class="css-lbyitw Checkbox-box">...</div>

经搜索,问题的原因是Actual element is not visible within browser dimension and covered by some overlay element.(实际元素在浏览器维度内不可见,并被某些覆盖元素覆盖。),可以看到这里的input是被一个div覆盖住了。

解决代码:

from selenium.webdriver import ActionChains
alert_input = WebDriverWait(driver, 5).until(EC.presence_of_element_located((By.XPATH, '//input[@name="isMarketingEnabled" and @type="checkbox"]')))
actions = ActionChains(driver)
actions.move_to_element(alert_input).click().perform()

实测实现点击选中复选框的目标。 

 文章来源地址https://www.toymoban.com/news/detail-743924.html

到了这里,关于selenium中出现 Other element would receive the click的解决方式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包