mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-07-16 23:11:04 -05:00
7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import type {Page} from '@playwright/test'
|
|
|
|
export async function gotoUserSettings(page: Page, section: string) {
|
|
await page.goto(`/user/settings/${section}`)
|
|
await page.waitForLoadState('networkidle')
|
|
}
|