shouldHaveTitle method
Laravel Dusk-style alias for assertTitle.
Asserts that the page title exactly matches the expected title.
Example:
await browser.shouldHaveTitle('Dashboard - MyApp');
Implementation
FutureOr<Browser> shouldHaveTitle(String title) => assertTitle(title);