c05ff4cca1
This commit continues the application wizard buildout. In this commit are the following changes: - Fixed a width-setting bug in the Makefile `make help` feature (i.e "automate that stuff!") - Added Radius to the list of providers we can offer via the wizard - Added `launchUrl` and `UI Settings` to features of the application page the wizard can find - Changed 'SAML Manual Configuration' to just say "SAML Configuration" - Modified `ak-form-group` to take and honor the `aria-label` property (which in turn makes it easier to target specific forms with unit testing) - Reduced the log level for wdio to 'warn'; 'info' was super-spammy and not helpful. It can be put back with `--logLevel info` from the command line.
14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
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",
|
|
`button*=${selector}`
|
|
);
|
|
}
|
|
}
|
|
|
|
export default new RadiusForm();
|