gpt4 book ai didi

java - 使用 xpath 查找 Selenium 中的元素很困难

转载 作者:行者123 更新时间:2023-12-01 09:54:09 24 4
gpt4 key购买 nike

我发现很难识别 Selenium 中的搜索按钮。当我使用 xpath 时,问题是一样的。我的操作是单击 SearchButton这是 HTML 代码片段。

Attached HTML Code我正在尝试使用下面的 xpath 来识别元素

WebElement search=new WebDriverWait(driver,15)
.until(ExpectedConditions.presenceOfElementLocated(
By.xpath("//p[@class='btnRow']/name[@name='SearchButton']")));

请在这方面帮助我,因为我无法继续

最佳答案

您的 xpath 搜索元素名称,但它是一个输入。请尝试以下操作:

WebElement search=new WebDriverWait(driver,15).until(ExpectedConditions.presenceOfElementLocated(By.xpath("//p[@class='btnRow']/input[@name='SearchButton']")));

关于java - 使用 xpath 查找 Selenium 中的元素很困难,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37373204/

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