下面的HTML元素是表单的一部分:
<input id="code" type="text" name="code" placeholder="Enter code here" autocomplete="off"/>
我想将字符串传递给此元素。我不知道如何传递没有值属性的字符串。
答案 0 :(得分:1)
您可以尝试使用setText()
方法将字符串传递给输入:
HtmlTextInput input = (HtmlTextInput) page.getElementById("code");
input.setText("your_text");
或type()
方法:
HtmlTextInput input = (HtmlTextInput) page.getElementById("code");
input.type("your_text");