Base class to build page objects for end-to-end tests with Playwright.
npm install @agnos-ui/base-po
import {BasePO} from '@agnos-ui/base-po';
import {Locator} from '@playwright/test';
export const customComponentSelectors = {
rootComponent: '.custom',
otherContent: '.content-class',
};
export class CustomComponentPO extends BasePO {
selectors = {...customComponentSelectors};
override getComponentSelector(): string {
return this.selectors.rootComponent;
}
get locatorOtherContent(): Locator {
return this.locatorRoot.locator(this.selectors.otherContent);
}
}
Please refer to the documentation included in the source code.