mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import type { Page } from "@playwright/test";
|
|
|
|
export async function goToScopeTab(page: Page) {
|
|
await page.getByTestId("scopeTab").click();
|
|
}
|