mirror of
https://github.com/goauthentik/authentik
synced 2026-05-11 17:36:35 +02:00
* web: Clean up locale. * web: Clean ambiguous imports. * web: Clean up entrypoint imports. * web: Format imports. * web: Normalize extensions. * web: Tidy order. * web: Remove TS aliases.
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
import Page from "../pageobjects/page.js";
|
|
|
|
import { $ } from "@wdio/globals";
|
|
|
|
export default class AdminPage extends Page {
|
|
public async pageHeader() {
|
|
return await $(">>>ak-page-header").$('>>>slot[name="header"]');
|
|
}
|
|
|
|
async openApplicationsListPage() {
|
|
await this.open("if/admin/#/core/applications");
|
|
}
|
|
}
|