shouldBeOn method
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);