当动态生成Value属性时,如何在Selenium Web驱动程序中使用java从tag中获取值

前端之家收集整理的这篇文章主要介绍了当动态生成Value属性时,如何在Selenium Web驱动程序中使用java从tag中获取值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图操作的 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");
原文链接:https://www.f2er.com/html/226064.html

猜你在找的HTML相关文章