shouldHaveTitle method

FutureOr<Browser> shouldHaveTitle(
  1. String title
)
inherited

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