方法一:获取input的文本值
chrome.findElement( By.id("txtName")? ).getText();?
方法二:获取input中value的值
chrome.findElement(By.id("txtName")? ).getAttribute("value") ;
方法一:获取input的文本值
chrome.findElement( By.id("txtName")? ).getText();?
方法二:获取input中value的值
chrome.findElement(By.id("txtName")? ).getAttribute("value") ;