Pagevariable
This Interactor can be used to assert on global properties of the
page. When using the BigTest test runner, it can also be used for
interacting with the page itself, for example through nagivation.
Example
await Page.has({ title: 'Welcome to my app!' });
Navigation, for BigTest test runner only:
await Page.visit('/archive');
Filters
title: string – the title of the documenturl: string – the URL of the document
Actions
visit(path: string):Interaction– visit the given path in the test frame, BigTest runner only.