gpt4 book ai didi

java - 元素在点不可点击。其他元素会收到点击 :

转载 作者:IT老高 更新时间:2023-10-28 21:00:06 26 4
gpt4 key购买 nike

我正在尝试单击页面顶部的按钮。我正在使用 CSS 选择器,当我在本地 Eclipse 中运行它时它工作得非常好。但是当我尝试在我本地的 Jenkins 服务器上运行它时机器失败,说元素不可点击。当我看到 Jenkins 测试失败的屏幕截图时,我看到标题与我想要单击的按钮重叠。我已经尝试了几乎所有使用 XPath、CSS、移动到元素、移动鼠标​​的方法。但还是不能解决,求大神帮忙。

我想点击添加按钮

org.openqa.selenium.WebDriverException: Element is not clickable at point (775.25, 10.166671752929688). Other element would receive the click: <div class="globalHeader-UtilTop"></div>
Command duration or timeout: 69 milliseconds
Build info: version: '2.53.0', revision: '35ae25b1534ae328c771e0856c93e187490ca824', time: '2016-03-15 10:43:46'
System info: host', ip: '', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.7.0_80'

<div class="Componet-intels**strong text**-Container">
<div class="Componet-intels-Container-Header">
<div class="Componet-intels-Container-Content">
<div class="Componet-intels-Container-Content-Row">
<span class="Componet-intels-Item"> Item # </span>
<span class="Componet-intels-Text-Item">
<span class="Componet-intels-Lable-Quantity"> Qty: </span>
<span class="Componet-intels-Text-Quantity">
<span class="Componet-intels-Button">
**<input class="Componet-intelsButtonIcon" type="button" value="Add">**
</span>
</div>

最佳答案

Element is not clickable at point (775.25, 10.166671752929688). Other element would receive the click:

它清楚地表明,在这种情况下,我们要点击的元素被其他一些元素 div 隐藏,它会接收点击。

我认为这是 UI 的问题,标题不应该隐藏元素,但你可以尝试一些事情:

  1. 从webdriver最大化浏览器的窗口,看看header是否还隐藏了元素

    driver.manage().window().maximize() 
  2. 使用JavaScript点击元素

    WebElement element = driver.findElement(By.<locator>);
    JavascriptExecutor executor = (JavascriptExecutor)driver;
    executor.executeScript("arguments[0].click()", element)`

关于java - 元素在点不可点击。其他元素会收到点击 :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38923356/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com