seeTitleIs

Verifies the title of the current page.

Arguments

Name Type Required Default Description
title string true The expected title.

Examples

it( "can verify the title of a page", function() {
    this.visit( "/" )
        .seeTitleIs( "Home Page" );
} );