我有一个简单的 HTML 单元代码,用于按下按钮并在页面上提交表单,但它不想工作。这是我的代码:
public static boolean sub(String ref, String zip) throws Exception {
WebClient webClient = new WebClient(BrowserVersion.FIREFOX_3_6);
webClient.getOptions().setRedirectEnabled(true);
webClient.getOptions().setJavaScriptEnabled(true);
webClient.getCookieManager().setCookiesEnabled(true);
final HtmlPage page1 = webClient.getPage("http://site.com/");
webClient.waitForBackgroundJavaScript(20000);
final HtmlButton button = page1.getFirstByXPath("//*[@id=\"lookup\"]");
final HtmlTextInput orderField = page1.getFirstByXPath("//*[@id=\"order-number\"]");
final HtmlTextInput zipField = page1.getFirstByXPath("//*[@id=\"order-user-info\"]");
orderField.setValueAttribute(ref);
zipField.setValueAttribute(zip);
final HtmlPage page2 = button.click();
webClient.waitForBackgroundJavaScript(20000);
System.out.println(page2.asText());
webClient.closeAllWindows();
return true;
}
所有这一切都是打印出第一页的文本,但填充了文本框。如您所见,我尝试等待 javascript,它仍然无法正常工作。任何帮助表示赞赏。
更新:我发现了一些新信息。似乎当我输入正确的订单号时,它只显示当前页面并填写了文本框,而不是它应该重定向到的页面,但是当我输入错误信息时,它显示当前页面填写的文本框和“错误信息”错误消息。看来这只是没有重定向......