@lifeart/gxt
Version:
<img align="right" width="95" height="95" alt="Philosopher’s stone, logo of PostCSS" src="./public/logo.png">
16 lines (15 loc) • 630 B
TypeScript
export declare enum ButtonSelectors {
Create1000 = "#run",
Create5000 = "#runlots",
Append1000 = "#add",
UpdateEvery10th = "#update",
SelectFirstRow = "tr:nth-child(1) a[data-test-select]",
SelectSecondRow = "tr:nth-child(2) a[data-test-select]",
RemoveFirstRow = "tr:nth-child(1) a[data-test-remove]",
RemoveSecondRow = "tr:nth-child(2) a[data-test-remove]",
Clear = "#clear",
SwapRows = "#swaprows"
}
export declare function emitDomClickEvent(selector: ButtonSelectors): void;
export declare function waitForIdle(): Promise<unknown>;
export declare function enforcePaintEvent(): boolean;