@agnos-ui/page-objects
Version:
Page objects to be used when testing AgnosUI-based applications with Playwright.
28 lines (27 loc) • 728 B
TypeScript
import { BasePO } from '@agnos-ui/base-po';
export declare const ratingSelectors: {
rootComponent: string;
star: string;
};
export declare class RatingPO extends BasePO {
selectors: {
rootComponent: string;
star: string;
};
getComponentSelector(): string;
/**
* Get the main title locator of the feature page
*/
locatorStar(index: number): import("playwright-core").Locator;
state(): Promise<{
rootClasses: string[];
value: string | null;
min: string | null;
max: string | null;
text: string | null;
disabled: string | null;
readonly: string | null;
stars: string[];
classes: string[][];
}>;
}