pomwright
Version:
POMWright is a complementary test framework for Playwright written in TypeScript.
24 lines (18 loc) • 840 B
text/typescript
import {
BasePage,
type BasePageOptions,
type ExtractBaseUrlType,
type ExtractFullUrlType,
type ExtractUrlPathType,
} from "./src/basePage";
export { BasePage, type BasePageOptions, type ExtractBaseUrlType, type ExtractFullUrlType, type ExtractUrlPathType };
import { test } from "./src/fixture/base.fixtures";
export { test };
import { PlaywrightReportLogger } from "./src/helpers/playwrightReportLogger";
export { PlaywrightReportLogger };
import { type AriaRoleType, GetByMethod, type LocatorSchema } from "./src/helpers/locatorSchema.interface";
export { GetByMethod, type LocatorSchema, type AriaRoleType };
import { GetLocatorBase, type LocatorSchemaWithoutPath } from "./src/helpers/getLocatorBase";
export { GetLocatorBase, type LocatorSchemaWithoutPath };
import { BaseApi } from "./src/api/baseApi";
export { BaseApi };