Returns the URL of this page. @return the URL of this page
()
| 251 | * @return the URL of this page |
| 252 | */ |
| 253 | @Override |
| 254 | public URL getUrl() { |
| 255 | final WebResponse wr = getWebResponse(); |
| 256 | if (null == wr) { |
| 257 | return UrlUtils.URL_ABOUT_BLANK; |
| 258 | } |
| 259 | return getWebResponse().getWebRequest().getUrl(); |
| 260 | } |
| 261 | |
| 262 | @Override |
| 263 | public boolean isHtmlPage() { |
no test coverage detected