gpt4 book ai didi

java - 无法使用 Selenium WebDriver 定位现有元素

转载 作者:行者123 更新时间:2023-12-01 18:26:21 26 4
gpt4 key购买 nike

所以我在 HTML 页面上有这个文本字段,它在模式框中接受 1-100 之间的数字。如果您输入一个大数字 -> 下面的 div 中会出现错误消息,并且类会分配给该 div。对于负数也是如此。无法输入文本,将该字段留空,然后在具有空字段的模式框中单击“确定”也会触发错误消息,如我之前描述的那样。

当我手动测试所有内容时,一切正常,我可以找到具有我之前提到的类的元素。

当我自动执行此操作时...我总是收到错误:没有这样的元素:无法定位元素:{“method”:“css选择器”,“selector”:“.class”} 当我在空字段中单击“确定”后检查是否存在错误消息时。

数字太大或为负数时,可以正确定位元素。

似乎单击了“确定”按钮,但未出现消息。因此,手动单击按钮和自动单击按钮之间存在差异。

你们中是否有人注意到过类似的情况,并且可以给我一些意见,告诉我可能是什么原因以及如何解决这个问题?

已经询问了一些同事,他们都不知道为什么会发生这种情况。

如果您需要任何其他信息,请告诉我。

谢谢

编辑:

<div class="classes" width="400px">
<div class="classes">
<h4 class="classes">Some text</h4>
<svg
stroke="currentColor"
fill="currentColor"
stroke-width="0"
viewBox="0 0 24 24"
class="classes"
size="20"
height="20"
width="20"
>
<path
d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
></path>
</svg>
</div>
<div class="classes">
<form novalidate="" class="classes">
<h3 class="classes">Some text</h3>
<div class="">
<div class="classes">
<div class="classes">
<input
class="classes"
name="name"
type="number"
id="name"
step="any"
autocomplete="new-password"
value="70"
/>
</div>
<div class="classes">
HERE IS THE ERROR MESSAGE DISPLAYED
</div>
</div>
</div>
<div class="classes">
<button class="classes" type="button" id="cancel">
<p class="classes">Abbrechen</p></button
><button class="classes" type="submit" id="ok">
<p class="classes">Ok</p>
</button>
</div>
</form>
</div>
</div>

这是一些 Selenium 代码:

这是用所需输入填充字段的函数:

public void fillField(String input) {
driver.findElement(byId).click();
driver.findElement(byId2).click();
driver.findElement(byId2).clear();
driver.findElement(byId2).clear();
driver.findElement(byId2).sendKeys(input);
}

我们需要在这里清除该字段两次,因为由于某种原因,一次不能清除它。但目前这不是问题。

然后我们只需单击“确定”即可:

public void clickOk() {
driver.findElement(byOkModal).click();
}

但问题是,单击“确定”后并没有出现错误消息。手动单击时会出现。

还尝试了不同的等待方法,多次单击,移动鼠标并单击其他地方......没有任何效果......

最佳答案

正如人们之前提到的,将您的 Selenium 脚本放在这里会非常有帮助但你可以尝试这样的事情。

// Click ok here 

// Wait for message to be displayed
WebDriverWait wait = new WebDriverWait();
wait.until(ExpectedConditions.visibilityOf(WebElement)).isDisplayed();

或者你创建方法然后在其他地方重用它

public boolean iSElementVisable(WebElement) {
return wait.until(ExpectedConditions. visibilityOf(WebElement)));
}

编辑:try-catch 可能有帮助

    public boolean isElementPresent(By by) {
try {
driver.findElement(by);
return true;
} catch (NoSuchElementException e) {
return false;
}
}

或流畅等待

    public void waitUntilWebElement(final WebElement element) {
new FluentWait<>(driver)
.withTimeout(Duration.ofSeconds(30))
.pollingEvery(Duration.ofSeconds(3))
.until(d -> {
if(element.isDisplayed()) {
// do something
} else {
// do something
}
});
}

在此处了解有关流畅等待的更多信息:https://selenium.dev/selenium/docs/api/java/org/openqa/selenium/support/ui/FluentWait.html

希望这有帮助。

关于java - 无法使用 Selenium WebDriver 定位现有元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60228149/

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