This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-27 22:30:56 +00:00
|
|
|
import Page from "../page.js";
|
|
|
|
|
|
|
|
export class RadiusForm extends Page {
|
|
|
|
async setAuthenticationFlow(selector: string) {
|
|
|
|
await this.searchSelect(
|
|
|
|
'>>>ak-tenanted-flow-search[name="authorizationFlow"] input[type="text"]',
|
|
|
|
"authorizationFlow",
|
2023-10-04 21:24:45 +00:00
|
|
|
`button*=${selector}`,
|
2023-09-27 22:30:56 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default new RadiusForm();
|