htmlunit java更改输入文本
我使用htmlunit。 如果文本输入没有属性“值”,我如何设置它的值?
<input type="text" onkeypress="test();" id="id" name="name" class="ttt">
我尝试了这个,但没有任何结果
((HtmlTextInput) portfolios.getHtmlElementById("id")).setText("text");
((HtmlInput) portfolios.getHtmlElementById("id")).setTextContent("text");
((HtmlInput) portfolios.getHtmlElementById("id")).setAttribute("value", "text");
请帮忙!
I use htmlunit.
How i can set value of text input if it does not have an attribute 'value' ?
<input type="text" onkeypress="test();" id="id" name="name" class="ttt">
I tried this, but nothing
((HtmlTextInput) portfolios.getHtmlElementById("id")).setText("text");
((HtmlInput) portfolios.getHtmlElementById("id")).setTextContent("text");
((HtmlInput) portfolios.getHtmlElementById("id")).setAttribute("value", "text");
Please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是否 HtmlInput.setValueAttribute( ) 有帮助吗?
Does HtmlInput.setValueAttribute() help?