我需要从HTML字符串加载页面,而不是从服务器加载页面。
我使用this answer中的方法:
String html = "<html><head><script>" +
"alert('hey 1'); " +
"function OnLoadEvent() { alert('hey 2'); }" +
"</script></head>" +
"<body onload='OnLoadEvent()'></body></html>"
URL url = new URL("http://www.example.com");
StringWebResponse response = new StringWebResponse(html, url);
WebClient client = new WebClient()
client.getOptions().setJavaScriptEnabled(true);
HtmlPage page = HTMLParser.parseHtml(response, client.getCurrentWindow());
我还设置了AlertHandler
如下:
client.setAlertHandler(new AlertHandler() {
@Override
public void handleAlert(Page arg0, String arg1) {
System.out.println("ALERT: " + arg1);
}
});
上面的示例HTML仅警告“嘿1” - 我希望它提醒“嘿1”和“嘿2” - 这意味着身体onload
事件未触发。
我需要做些什么来使onload
事件发生火灾吗?
答案 0 :(得分:3)
我错过了对HtmlPage.initialize()
的电话。