Abstract
Abstract base class for Playwright test scenarios. Provides access to the current page from the test context.
page
class LoginScenario extends Scenario { @Step('Open login page') async open() { await this.page.goto('/login'); }} Copy
class LoginScenario extends Scenario { @Step('Open login page') async open() { await this.page.goto('/login'); }}
Protected
Description
Abstract base class for Playwright test scenarios. Provides access to the current
pagefrom the test context.Example