14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import Page from "./page.js";
|
|
|
|
export class OauthForm extends Page {
|
|
async setAuthorizationFlow(selector: string) {
|
|
await this.searchSelect(
|
|
'>>>ak-flow-search[name="authorizationFlow"] input[type="text"]',
|
|
"authorizationFlow",
|
|
`button*=${selector}`,
|
|
);
|
|
}
|
|
}
|
|
|
|
export default new OauthForm();
|