I have the following HTML code for "Save" button:
<input type="submit" onclick="return confirm('Sure to change global settings?')" value="Save" name="submit">
I want to retrieve the caption of button. I used the following code to do that:
String actualButtonCaption = driver.findElement(By.xpath("//input[@value='Save']")).getText();
I also used the absolute xpath as below:
String actualButtonCaption = driver.findElement(By.xpath("//html/body/form/div[3]/div[2]/input")).getText();
But unfortunately, no text was retrieved. Blank/empty text was found. Can anybody help me?