我有“保存”按钮的以下 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();
但不幸的是,没有检索到任何文本。找到空白/空文本。有谁能够帮助我?