mirror of
https://github.com/goauthentik/authentik
synced 2026-05-10 17:12:08 +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
453 B
TypeScript
20 lines
453 B
TypeScript
import Page from "../page.js";
|
|
|
|
import { $ } from "@wdio/globals";
|
|
|
|
export class ForwardProxyForm extends Page {
|
|
async setAuthorizationFlow(selector: string) {
|
|
await this.searchSelect(
|
|
'>>>ak-flow-search[name="authorizationFlow"]',
|
|
"authorizationFlow",
|
|
selector,
|
|
);
|
|
}
|
|
|
|
get externalHost() {
|
|
return $('>>>input[name="externalHost"]');
|
|
}
|
|
}
|
|
|
|
export default new ForwardProxyForm();
|