UNPKG

external-services-automation

Version:

External services automation library for Playwright and Cucumber

13 lines (12 loc) 440 B
import { Page, Locator } from '@playwright/test'; export declare class ConfirmCodePage { readonly page: Page; readonly pageTitle: Locator; readonly codeInput: Locator; readonly continueButton: Locator; constructor(page: Page); enterConfirmationCode(code: string): Promise<void>; clickContinue(): Promise<void>; submitConfirmationCode(code: string): Promise<void>; isOnConfirmCodePage(): Promise<void>; }