import Page from "../page.js"; import { $ } from "@wdio/globals"; export class ForwardProxyForm extends Page { async setAuthorizationFlow(selector: string) { await this.searchSelect( '>>>ak-flow-search[name="authorizationFlow"] input[type="text"]', "authorizationFlow", `button*=${selector}`, ); } get externalHost() { return $('>>>input[name="externalHost"]'); } } export default new ForwardProxyForm();