Logs messages to the browser's standard output (stdout). If the browser was started from a terminal, output sent to dump() will appear in the terminal. Output from dump() is not sent to the browser's developer tools console. To log to the developer tools console, use console.log(). HtmlUnit alwa
(final String message)
| 664 | * @param message the message to log |
| 665 | */ |
| 666 | @JsxFunction({FF, FF_ESR}) |
| 667 | public void dump(final String message) { |
| 668 | final WebConsole console = getWebWindow().getWebClient().getWebConsole(); |
| 669 | console.print(Context.getCurrentContext(), getParentScope(), Level.INFO, new String[] {message}, null); |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * Invokes all the animation callbacks registered for this window by |
nothing calls this directly
no test coverage detected