UNPKG

@umbraco/playwright-testhelpers

Version:

Test helpers for making playwright tests for Umbraco solutions

9 lines (8 loc) 365 B
import { Page } from "@playwright/test"; import { UiBaseLocators } from "./UiBaseLocators"; export declare class CurrentUserProfileUiHelper extends UiBaseLocators { private readonly changePasswordBtn; constructor(page: Page); clickChangePasswordButton(): Promise<void>; changePassword(currentPassword: string, newPassword: string): Promise<void>; }