Uses of Class
com.gargoylesoftware.htmlunit.ScriptResult
-
Packages that use ScriptResult Package Description com.gargoylesoftware.htmlunit Framework classes (contains theWebClientclass which is the main entry point).com.gargoylesoftware.htmlunit.html Classes specific to HTML pages, particularly theHtmlPagewhich represents an HTML document and provides access to its content. -
-
Uses of ScriptResult in com.gargoylesoftware.htmlunit
Methods in com.gargoylesoftware.htmlunit with parameters of type ScriptResult Modifier and Type Method Description static booleanScriptResult. isFalse(ScriptResult scriptResult)Utility method testing if a script result isfalse.static booleanScriptResult. isUndefined(ScriptResult scriptResult)Utility method testing if a script result is undefined (there was no return value). -
Uses of ScriptResult in com.gargoylesoftware.htmlunit.html
Methods in com.gargoylesoftware.htmlunit.html that return ScriptResult Modifier and Type Method Description protected ScriptResultDomElement. doClickFireClickEvent(com.gargoylesoftware.htmlunit.javascript.host.event.Event event)This method implements the control onclick handler call during the click action.protected ScriptResultHtmlCheckBoxInput. doClickFireClickEvent(com.gargoylesoftware.htmlunit.javascript.host.event.Event event)This method implements the control onclick handler call during the click action.protected ScriptResultHtmlRadioButtonInput. doClickFireClickEvent(com.gargoylesoftware.htmlunit.javascript.host.event.Event event)This method implements the control onclick handler call during the click action.ScriptResultHtmlPage. executeJavaScript(java.lang.String sourceCode)Executes the specified JavaScript code within the page.ScriptResultHtmlPage. executeJavaScript(java.lang.String sourceCode, java.lang.String sourceName, int startLine)INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.ScriptResultHtmlPage. executeJavaScriptFunction(java.lang.Object function, java.lang.Object thisObject, java.lang.Object[] args, DomNode htmlElementScope)INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Execute a Function in the given context.ScriptResultDomElement. fireEvent(com.gargoylesoftware.htmlunit.javascript.host.event.Event event)INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Fires the event on the element.ScriptResultDomElement. fireEvent(java.lang.String eventType)INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Shortcut forDomElement.fireEvent(Event).
-