使用 Selenium WebDriver 检索 HTML 输入的值
2022-08-31 07:49:11
在 Web 应用程序的 HTML 中,有以下代码:
<input type="text" name="prettyTime" id="prettyTime" class="ui-state-disabled prettyTime" readonly="readonly">
显示时间的字符串实际上显示在页面上。
在Selenium WebDriver中,我有一个对象指的是使用:WebElement
<input>
WebElement timeStamp = waitForElement(By.id("prettyTime"));
我想获得 的值,或者换句话说,页面上打印的内容。我尝试了所有的getters,没有任何东西可以检索到用户看到的实际值。WebElement
WebElement