shouldBeOn method

FutureOr<Browser> shouldBeOn(
  1. String url
)
inherited

Laravel Dusk-style alias for assertUrlIs.

Asserts that the current URL exactly matches the expected URL.

Example:

await browser.shouldBeOn('/dashboard');

Implementation

FutureOr<Browser> shouldBeOn(String url) => assertUrlIs(url);