mirror of
https://github.com/goauthentik/authentik
synced 2026-05-09 16:42:38 +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.
20 lines
452 B
TypeScript
20 lines
452 B
TypeScript
import Page from "../page.js";
|
|
|
|
import { $ } from "@wdio/globals";
|
|
|
|
export class ApplicationForm extends Page {
|
|
async name() {
|
|
return await $('>>>ak-text-input[name="name"]').$(">>>input");
|
|
}
|
|
|
|
async uiSettings() {
|
|
return await $(">>>ak-form-group").$('button[aria-label="UI Settings"]');
|
|
}
|
|
|
|
async launchUrl() {
|
|
return await $('>>>input[name="metaLaunchUrl"]');
|
|
}
|
|
}
|
|
|
|
export default new ApplicationForm();
|