gpt4 book ai didi

java - 如何使用 Java 获取 WebDriver 中按钮的标题/文本

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

我有以下用于“保存”按钮的 HTML 代码:

<input type="submit" onclick="return confirm('Sure to change global settings?')" value="Save" name="submit">

我想检索按钮的标题。我使用以下代码来做到这一点:

String actualButtonCaption = driver.findElement(By.xpath("//input[@value='Save']")).getText();

我还使用了绝对xpath,如下所示:

String actualButtonCaption = driver.findElement(By.xpath("//html/body/form/div[3]/div[2]/input")).getText();

但不幸的是,没有检索到任何文本。发现空白/空文本。有人可以帮助我吗?

最佳答案

getAttribute 方法可用于检索属性值。

在这种情况下,以下内容将返回标题:

driver.findElement(By.XPath("//input[@name='submit']")).getAttribute("value");

关于java - 如何使用 Java 获取 WebDriver 中按钮的标题/文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13006311/

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