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.
20 lines
425 B
TypeScript
20 lines
425 B
TypeScript
import Page from "../page.js";
|
|
|
|
import { $ } from "@wdio/globals";
|
|
|
|
export class SamlForm extends Page {
|
|
async setAuthorizationFlow(selector: string) {
|
|
await this.searchSelect(
|
|
'>>>ak-flow-search[name="authorizationFlow"]',
|
|
"authorizationFlow",
|
|
selector,
|
|
);
|
|
}
|
|
|
|
get acsUrl() {
|
|
return $('>>>input[name="acsUrl"]');
|
|
}
|
|
}
|
|
|
|
export default new SamlForm();
|