UNPKG

playwright-cucumber-ts-steps

Version:

A collection of reusable Playwright step definitions for Cucumber in TypeScript, designed to streamline end-to-end testing across web, API, and mobile applications.

15 lines (14 loc) 339 B
/** * Pauses the test execution for debugging with a custom message. * * ```gherkin * When I debug with message {string} * ``` * * @example * ```gherkin * When I debug with message "Check login form" * ``` * @category Debug Steps */ export declare function When_I_debug_with_message(this: any, message: string): Promise<void>;