gpt4 book ai didi

java - 无法通过 id 定位元素

转载 作者:行者123 更新时间:2023-12-02 00:48:10 25 4
gpt4 key购买 nike

我正在这样做:

WebElement userName = driver.findElement(By.id("username"));

但我得到:

Unable to locate element: #username

我的 DOM 看起来像这样:

<input type="text" name="username" id="username" class="u-leader-m10"
required="required" tabindex="1">

从表面上看,一切都很好。那么,应该从哪些方面来调查这一失败呢?很高兴提供更多信息。我只是不知道什么是相关的。

编辑:我尝试过使用“name”而不是“id”,并且它有效 - 仍然很困惑!

最佳答案

尝试下面的

WebElement userName = (new WebDriverWait(driver, 10)).until(ExpectedConditions.presenceOfElementLocated(By.id("username")));

关于java - 无法通过 id 定位元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57881654/

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