這裏後如何獲得文本值是我的HTML代碼硒的webdriver只是img標籤
<div id="sucessmessage" class="confirmmessage">
<img src="/QA_TEST/OURTEST/success.gif" alt="">
New Customer Successfully Created
</div>
我如何努力獲得的「新客戶成功塑造了」
String myxapth = "//*[@id='successMessage']/img";
String myvalue1 = driver.findElement(By.xpath(myxapth)).getText();
String myvalue2 = driver.findElement(By.xpath(myxapth)).getAttribute("value") ;
系統結果作爲文本值下面 myvalue1是空 myvalue2是空
你是什麼形象標籤剛過意味着什麼呢?兄弟節點,子節點,父節點? –