单选按钮问题

时间:2013-11-20 22:09:36

标签: java html htmlunit

我正在使用Htmlunit编写一个Java程序,它有一个单选按钮,需要单击以填充一组信息。我目前在查找单击单选按钮后需要输入的字段时遇到问题。目前我的代码是:

String url = "http://cpdocket.cp.cuyahogacounty.us/";

final WebClient webClient = new WebClient();
final HtmlPage page = webClient.getPage(url);
final HtmlForm form = page.getForms().get(0);
final HtmlElement button = form.getElementById("SheetContentPlaceHolder_btnYes");
final HtmlPage page2 = button.click();
try {
  synchronized (page2) {
    page2.wait(3000);
  }
}
catch(InterruptedException e)
{
  System.out.println("error");
}

//returns the first page after the security page
final HtmlForm form2 = page2.getForms().get(0);
final HtmlRadioButtonInput button2 = form2.getInputByValue("forcl");
button2.setDefaultChecked(true);
page2.refresh();
final HtmlForm form3 = page2.getForms().get(0);
form3.getInputByName("ctl00$SheetContentPlaceHolder$foreclosureSearch$txtZip").setValueAttribute("44106");
final HtmlSubmitInput button3 = form3.getInputByValue("Submit");
final HtmlPage page3 = button3.click();
try {
  synchronized (page3) {
    page2.wait(10000);
  }
}
catch(InterruptedException e)
{
  System.out.println("error");
}

虽然第一页是需要绕过的安全页面,但第二页是我遇到问题的地方,因为我收到错误“

com.gargoylesoftware.htmlunit.ElementNotFoundException: elementName=[input] attributeName=[name] attributeValue=[ctl00$SheetContentPlaceHolder$foreclosureSearch$txtZip]
    at com.gargoylesoftware.htmlunit.html.HtmlForm.getInputByName(HtmlForm.java:463)
    at Courtscraper.scrapeWebsite(Courtscraper.java:58)"

我认为这意味着无法在表单中找到输入字段。我一直指的是两个网站作为参考。 Website1Website2。我不确定,但我相信在将单选按钮设置为true后我可能需要创建一个新的Html页面。

2 个答案:

答案 0 :(得分:0)

在不知道页面的情况下,无法确定错误发生的原因。但是,正如您所说,很明显getInputByName没有找到元素并引发异常。

鉴于该代码,并假设您没有在字符串中提交语法错误以按名称获取输入,我建议删除此行:

page2.refresh();

在对页面进行修改后刷新页面可能会导致再次获得未修改的页面。

关于在将单选按钮设置为true后创建新的HtmlPage,只有在收音机附加了onchange或类似的事件时才会触发,这会触发修改DOM并创建元素的JavaScript AJAX调用你想要获取。

这就是我给出的所有代码。

答案 1 :(得分:0)

在创建第2页后的代码中,您将WebRequest无法创建这样的新页面。

String url = "http://cpdocket.cp.cuyahogacounty.us/Search.aspx";
String EventTarget = "ctl00$SheetContentPlaceHolder$rbCivilForeclosure";
String world = "ctl00$SheetContentPlaceHolder$UpdatePanel1|ctl00$SheetContentPlaceHolder$rbCivilForeclosure";
String Viewstate = page2.getElementById("__VIEWSTATE").getAttribute("value");
String EventValidation = page2.getElementById("__EVENTVALIDATION").getAttribute("value");

WebRequest req1 = new WebRequest(new URL(url));
req1.setHttpMethod(HttpMethod.POST);
req1.setAdditionalHeader("Origin", "http://cpdocket.cp.cuyahogacounty.us");
req1.setAdditionalHeader("Referer", "http://cpdocket.cp.cuyahogacounty.us/Search.aspx");
req1.setAdditionalHeader("X-Requested-With", "XMLHttpRequest");

String txtview1 = "ctl00$ScriptManager1=" + URLEncoder.encode(world) + "&__EVENTTARGET=" + URLEncoder.encode(EventTarget) + "&__EVENTARGUMENT=&__LASTFOCUS=&__VIEWSTATE=" + URLEncoder.encode(Viewstate) + "&__EVENTVALIDATION=" + URLEncoder.encode(EventValidation) + "&ctl00$SheetContentPlaceHolder$rbSearches=forcl&__ASYNCPOST=true&";
//System.out.println("this is text view =============== " + txtview1);
req1.setRequestBody(txtview1);
req1.setAdditionalHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
String re=client.getPage(req1).getWebResponse().getContentAsString();
System.out.println("========== " + re);

成功完成上述代码后,您将获得一个字符串,其中包含您的响应。