我想设置一个搜索框的值,点击搜索按钮,并解析结果。 问题是,结果显示在另一个框架,我不能够获得其他框架。 编码:
import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlElement;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
import com.gargoylesoftware.htmlunit.html.HtmlTextInput;
import java.io.IOException;
import java.net.MalformedURLException;
public class LoginSimulation
{
public static void main(String args[])
{
HtmlPage page = null;
String url = "http://www.ravmilim.co.il/naerr.asp";
WebClient webClient = new WebClient(BrowserVersion.FIREFOX_3_6);
webClient.setThrowExceptionOnScriptError(false);
try
{
page = webClient.getPage( url );
HtmlTextInput userInput = (HtmlTextInput) page.getElementById("txtUser");
userInput.setValueAttribute("yacov.schondorf@gmail.com");
HtmlPasswordInput passwordInput = (HtmlPasswordInput) page.getElementById("txtPass");
passwordInput.setValueAttribute("5750201");
HtmlElement theElement2 = (HtmlElement) page.getElementById("submitButton");
page = theElement2.click();
HtmlPage framePage = (HtmlPage) nextPage.getFrames().get(0).getEnclosedPage();
HtmlTextInput searchBox = (HtmlTextInput) framePage.getForms().get(0).getInputsByName("searchBox").get(0);
//
// so far so good...
//
searchBox.setValueAttribute("word");
HtmlAnchor anchor = framePage.getHtmlElementById("sl");
HtmlPage page1 = (HtmlPage) anchor.click();
try {
HtmlPage resultsPage = (HtmlPage) page1.getFrameByName("resault1").getEnclosedPage();// this should have worked!!
} catch (Exception e) {
//
// I get an ElementNotFoundException
//
e.printStackTrace();
}
//
// must logout - this site is sensitive to multiple logins
//
framePage.getAnchorByHref("logout.asp").click();
webClient.closeAllWindows();
}
catch ( Exception e )
{
e.printStackTrace();
}
}
}