UNPKG

@tshifhiwa/ohrm-ui-automation-framework

Version:

Playwright and TypeScript–based test automation framework for validating core UI features and workflows of the OrangeHRM demo application.

10 lines (8 loc) 233 B
import type { BrowserContext, Page } from "@playwright/test"; /** * Represents a Playwright browser context with an associated page. */ export interface BrowserContextWithPage { context: BrowserContext; page: Page; }