如何在Java中使用HtmlUnit从下拉框中选择元素?

发布于 2024-10-15 11:14:34 字数 115 浏览 1 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

愚人国度 2024-10-22 11:14:34

您可以使用 HtmlSelect 导航和操作页面

WebClient client = ...
Page page = client.getPage(url);
HtmlSelect select = (HtmlSelect) page.getElementById(mySelectId);
HtmlOption option = select.getOptionByValue(desiredOptionValue);
select.setSelectedAttribute(option, true);

JavaDoc 表明有很多灵活的 API 方法可以完成此类操作。

You can navigate and manipulate the page <select> elements using HtmlSelect:

WebClient client = ...
Page page = client.getPage(url);
HtmlSelect select = (HtmlSelect) page.getElementById(mySelectId);
HtmlOption option = select.getOptionByValue(desiredOptionValue);
select.setSelectedAttribute(option, true);

The JavaDoc shows that there are a lot of flexible API methods for doing things like this.

流殇 2024-10-22 11:14:34

添加以下行:

protected void selectOption(WebElement el, String option)
{
    Select select = new Select(el);
    select.selectByVisibleText(option);
}

protected WebElement elById(String id)
{
    return driver.findElement(By.id(id));
}

// "title" is your drop-down HTML id 
public void populateForm(String elValue)
{
    selectOption(elById("title"), elValue);
}

Add the follwoing lines:

protected void selectOption(WebElement el, String option)
{
    Select select = new Select(el);
    select.selectByVisibleText(option);
}

protected WebElement elById(String id)
{
    return driver.findElement(By.id(id));
}

// "title" is your drop-down HTML id 
public void populateForm(String elValue)
{
    selectOption(elById("title"), elValue);
}
筱果果 2024-10-22 11:14:34

以下代码:

HtmlSelect select = page.getElementById(mySelectId);

应该是:

HtmlSelect select = (HtmlSelect)page.getElementById(mySelectId);

Following code:

HtmlSelect select = page.getElementById(mySelectId);

should be:

HtmlSelect select = (HtmlSelect)page.getElementById(mySelectId);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文