如何在Java中使用HtmlUnit从下拉框中选择元素?
我正在 Java 中使用 HtmlUnit 导航到网页。我需要从该网页登录,然后从那里开始。我知道如何输入用户名和密码,但有一个下拉框,我需要选择其中一个选项。如何从 HtmlUnit 的下拉框中选择一个选项? 谢谢
I'm using HtmlUnit in Java to navigate to a web page. From that webpage i need to log in and then go from there. I know how to type in the user name and password but then there is a dropdown box where i need to select one of the options. How do i select an option from a dropdown box in HtmlUnit?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
HtmlSelect
导航和操作页面JavaDoc 表明有很多灵活的 API 方法可以完成此类操作。
You can navigate and manipulate the page
<select>
elements usingHtmlSelect
:The JavaDoc shows that there are a lot of flexible API methods for doing things like this.
添加以下行:
Add the follwoing lines:
以下代码:
应该是:
Following code:
should be: