我想点击一个带有此代码的按钮(“...”表示复制时间太长):
<a title="theTitle" id="123654" onclick="..." >Press me!</a>
使用Htmlunit。我的代码是:
try (final WebClient webClient = new WebClient()) {
final HtmlPage page = webClient.getPage("http://pathToURL.html");
HtmlButton button = (HtmlButton) page.getElementById("123654");
System.out.println(button);
}
问题是按钮为空。代码有什么问题?
感谢。