@umbraco/playwright-testhelpers
Version:
Test helpers for making playwright tests for Umbraco solutions
16 lines (15 loc) • 719 B
TypeScript
import { Page } from "@playwright/test";
import { UiBaseLocators } from "./UiBaseLocators";
export declare class ExamineManagementUiHelper extends UiBaseLocators {
private readonly examineManagementTab;
private readonly indexersContent;
private readonly indexerItems;
private readonly indexInfoRow;
constructor(page: Page);
clickExamineManagementTab(): Promise<void>;
doesIndexersHaveText(text: string): Promise<void>;
checkIndexersCount(): Promise<number>;
clickIndexByName(indexName: string): Promise<void>;
doesIndexPropertyHaveValue(indexProperty: string, indexValue: string): Promise<void>;
doesIndexHaveHealthStatus(indexName: string, status: string): Promise<void>;
}