Files
2025-08-07 14:09:28 -04:00

6 lines
144 B
TypeScript

import type { Page } from "@playwright/test";
export async function goToScopeTab(page: Page) {
await page.getByTestId("scopeTab").click();
}