mirror of
https://github.com/keycloak/keycloak.git
synced 2026-04-21 22:28:27 -04:00
5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
import type { Page } from "@playwright/test";
|
|
|
|
export async function goToScopeTab(page: Page) {
|
|
await page.getByTestId("scopeTab").click();
|
|
}
|