keycloak-scim/cypress/support/pages/admin_console/manage/authentication/WebAuthnPolicies.ts
2022-06-22 13:35:10 +02:00

38 lines
889 B
TypeScript

export default class WebAuthnPolicies {
webAuthnPolicyCreateTimeout(value: number) {
cy.findByTestId("webAuthnPolicyCreateTimeout").type(String(value));
return this;
}
goToTab() {
cy.findByTestId("policies").click().get("#pf-tab-3-webauthnPolicy").click();
return this;
}
goToPasswordlessTab() {
cy.findByTestId("policies")
.click()
.get("#pf-tab-4-webauthnPasswordlessPolicy")
.click();
return this;
}
fillSelects(data: Record<string, string>, isPasswordLess: boolean = false) {
for (const prop of Object.keys(data)) {
cy.get(
`#${
isPasswordLess ? prop.replace("Policy", "PolicyPasswordless") : prop
}`
)
.click()
.parent()
.contains(data[prop])
.click();
}
return this;
}
save() {
cy.findByTestId("save").click();
return this;
}
}