java.lang.Object | |
↳ | android.support.test.espresso.web.sugar.Web.WebInteraction<R> |
Analogous to a ViewInteraction or a DataInteraction, a WebInteraction exposes a fluent API to the underlying WebView.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Evaluates the given WebAssertion.
| |||||||||||
Performs a force enable of Javascript on a WebView.
| |||||||||||
Returns the result of a prior call to perform or check.
| |||||||||||
Causes this WebInteraction to have it's javascript evaluated in a particular DOM window.
| |||||||||||
Causes this WebInteraction to have it's javascript evaluated in a particular DOM window.
| |||||||||||
Executes the provided atom within the current context (the combination of Window and Element
References).
| |||||||||||
Removes the Element and Window references from this interaction.
| |||||||||||
Allows for contextually evaluating this WebInteraction with the selected element.
| |||||||||||
Causes this WebInteraction to supply the given ElementReference to the Atom prior to
evaluation.
| |||||||||||
Causes this WebInteraction to supply the given ElementReference to the Atom prior to
evaluation.
| |||||||||||
Disables all Timeouts on this WebInteraction.
| |||||||||||
Sets a specific timeout for this WebInteraction.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Evaluates the given WebAssertion. The WebAssertion's atom is evaluated, after it's evaluation completes, the WebAssertion is run on the main thread to perform further checks. The WebAssertion is given the Atom's result and the WebView it had run against. After this method completes, the result of the atom's evaluation is avaliable via get.
Performs a force enable of Javascript on a WebView. All WebView interactions are done via Javascript - therefore the WebView we are working on must support Javascript evaluation. Enabling Javascript may cause the WebView under test to be reloaded. This is necessary to ensure the test infrastructure javascript bridges are loaded by the WebView.
Returns the result of a prior call to perform or check.
Causes this WebInteraction to have it's javascript evaluated in a particular DOM window. This method accepts an Atom which will be evaluated in the main window to choose a particular DOM window for further interactions. This method will block until the the provided Atom returns with a result.
Causes this WebInteraction to have it's javascript evaluated in a particular DOM window. By default Javascript may be evaluated in the main window. However in an application which uses frames, you may want to evaluate in another frame.
Executes the provided atom within the current context (the combination of Window and Element References). This method blocks until the Atom returns. The result of the Atom's evaluation is used to create a new instance of WebInteraction which can be used to access the result of the Atom's evaluation.
Removes the Element and Window references from this interaction. This is usually necessary when a prior action (for example a click) introduces a navigation that invalidates the ElementReference and WindowReference pointers.
Allows for contextually evaluating this WebInteraction with the selected element. Specifically the elementPicker atom will be evaluated with the CURRENTLY selected element to discover the new element to work against. This allows callers to interact with a document that looks like this:
<div id="teacher"> <div id="person_name"> <p>Socrates</p> </div> </div> <div id="student"> <div id="person_name"> <p>Plato</p> </div> </div>With code like this:
onWebView()
.withElement(findElement(Locator.ID, "teacher"))
.withContextualElement(findElement(Locator.ID, "person_name"))
.check(webMatches(getText(), containsString("Socrates")));
Causes this WebInteraction to supply the given ElementReference to the Atom prior to evaluation. Calling this method resets any previously selected ElementReference.
Causes this WebInteraction to supply the given ElementReference to the Atom prior to
evaluation.
This method accepts an Atom
Disables all Timeouts on this WebInteraction. Javascript evaluation is performed asynchronously on the WebKit/Chromium thread. By default we wait a short while for the result to be delivered back to the test.
Sets a specific timeout for this WebInteraction.