UNPKG

external-services-automation

Version:

External services automation library for Playwright and Cucumber

12 lines (11 loc) 392 B
import { Page, Locator } from '@playwright/test'; export declare class UpdatePaymentMethodPage { readonly page: Page; readonly pageContainer: Locator; readonly stripeIframe: Locator; readonly continueButton: Locator; constructor(page: Page); clickContinue(): Promise<void>; isOnUpdatePaymentMethodPage(): Promise<void>; fillCardInformation(): Promise<void>; }