Web

public final class Web


An Entry Point to work with WebViews on Android.

Similar to onData, WebView interactions are actually composed of several ViewActions. However they need to be properly orchestrated and are quite verbose. Web and WebInteraction wrap this boilerplate and give an Espresso like feel to interacting with WebViews.

WebView interactions constantly cross the Java/Javascript boundary to do their work, since there is no chance of introducing race conditions by exposing data from the Javascript environment (everything we see on the Java side is an isolated copy), returning data from WebInteractions is fully supported.

Summary

Nested types

public class Web.WebInteraction<R>

Analogous to a ViewInteraction or a DataInteraction, a WebInteraction exposes a fluent API to the underlying WebView.

Public constructors

Web()

Public methods

static Web.WebInteraction<Void>
static Web.WebInteraction<Void>
onWebView(Matcher<View> viewMatcher)

Public constructors

Web

public Web()

Public methods

onWebView

public static Web.WebInteraction<VoidonWebView()

onWebView

public static Web.WebInteraction<VoidonWebView(Matcher<View> viewMatcher)