20 lines
447 B
TypeScript
20 lines
447 B
TypeScript
import { $ } from "@wdio/globals";
|
|
|
|
import Page from "../page.js";
|
|
|
|
export class ForwardProxyForm extends Page {
|
|
async setAuthorizationFlow(selector: string) {
|
|
await this.searchSelect(
|
|
'ak-flow-search[name="authorizationFlow"]',
|
|
"authorizationFlow",
|
|
selector,
|
|
);
|
|
}
|
|
|
|
get externalHost() {
|
|
return $('input[name="externalHost"]');
|
|
}
|
|
}
|
|
|
|
export default new ForwardProxyForm();
|