如何创建一个HtmlAnchor

时间:2012-01-07 18:55:41

标签: htmlunit

我正在浏览页面以获取包含特定文本的锚点。我想要做的是,如果没有锚满足标准,那么该方法应该返回一个新的HtmlAnchor指向我作为参数传递的页面。

public HtmlAnchor getAnchor(HtmlPage page, String criteria)
{
   if any anchor satisfies this criteria return that anchor 
   else create a new anchor pointing to the current page and return it //how to do this
}

仅供参考:我使用的是htmlunit 2.9

1 个答案:

答案 0 :(得分:0)

您似乎无法直接实例化HtmlAnchor,但可以创建其父级HtmlElement的实例。将其“href”属性设置为该页面的网址,您应该拥有所需的内容。

你打算用它做什么?