Package | Description |
---|---|
com.abmash.api |
Provides the main classes to control browsers and to find and interact with elements on the current web page.
|
com.abmash.api.browser |
Provides classes to extend the
Browser functionality and to further interact with it. |
com.abmash.core.browser.interaction |
Provides classes to interact with the browser and its elements.
|
Modifier and Type | Method and Description |
---|---|
JavaScriptResult |
Browser.javaScript(java.lang.String script,
java.lang.Object... args)
Loads JavaScript and evaluates it synchronously.
|
JavaScriptResult |
Browser.javaScriptAsync(java.lang.String script,
java.lang.Object... args)
Loads JavaScript and evaluates it asynchronously.
|
JavaScriptResult |
Browser.javaScriptFromFile(java.lang.String scriptFilename,
java.lang.Object... args)
Reads JavaScript from a file and evaluates it synchronously.
|
JavaScriptResult |
Browser.javaScriptFromFileAsync(java.lang.String scriptFilename,
java.lang.Object... args)
Reads JavaScript from a file and evaluates it asynchronously.
|
Modifier and Type | Method and Description |
---|---|
JavaScriptResult |
JavaScript.evaluate(Browser browser,
java.lang.Object... args)
Evaluates JavaScript synchronously.
|
JavaScriptResult |
JavaScript.evaluateAsync(Browser browser,
java.lang.Object... args)
Evaluates JavaScript asynchronously.
|
Modifier and Type | Method and Description |
---|---|
JavaScriptResult |
JavaScriptExecution.getResult() |