我试图操作的
HTML:
<select id="GlobalDateTimeDropDown" class="combo" onchange="CalculateGlobalDateTime('Time',this.value)" name="GlobalDateTimeDropDown"> <option value="+5.5" selected="selected"> … </option> <option value="+12"> … </option> <option value="+8"> … </option> <option value="+2"> … </option> </select> <input id="GlobalDateTimeText" class="combo" type="text" name="GlobalDateTimeText" value="" style="width:215px;padding:2px;" readonly="readonly"></input>
Java代码:
WebElement values=driver.findElement(By.id("GlobalDateTimeText")).getAttribute("Value"); System.out.println(values);
输出:
空白
解决方法
要选择输入值,您需要使用xpath选择器,因为使用by.id将找到select元素,因为它们共享相同的id – 这是不好的做法,因为它们确实应该是唯一的.无论如何,尝试:
driver.findElement(By.xpath("//input[@id='GlobalDateTimeText']")).getAttribute("value");