mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import type { Page } from "@playwright/test";
|
|
import { clickTableRowItem } from "../utils/table.ts";
|
|
|
|
export async function goToGroupDetails(page: Page, name: string) {
|
|
await clickTableRowItem(page, name);
|
|
}
|
|
|
|
export async function goToChildGroupsTab(page: Page) {
|
|
await page.getByTestId("groups").click();
|
|
}
|