如何为HtmlUnit中没有value属性的文本字段提供值?

时间:2016-04-28 16:39:01

标签: java html htmlunit jdk1.6

下面的HTML元素是表单的一部分:

<input id="code" type="text" name="code" placeholder="Enter code here" autocomplete="off"/>

我想将字符串传递给此元素。我不知道如何传递没有值属性的字符串。

1 个答案:

答案 0 :(得分:1)

您可以尝试使用setText()方法将字符串传递给输入:

HtmlTextInput input = (HtmlTextInput) page.getElementById("code");
input.setText("your_text");

type()方法:

HtmlTextInput input = (HtmlTextInput) page.getElementById("code");
input.type("your_text");