authentik/web/tests/pageobjects/forms/ldap.form.ts

14 lines
318 B
TypeScript

import Page from "../page.js";
export class LdapForm extends Page {
async setBindFlow() {
await this.searchSelect(
'ak-search-select-view[name="authorizationFlow"]',
"authorizationFlow",
"default-authentication-flow",
);
}
}
export default new LdapForm();