This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-26 22:15:47 +00:00
|
|
|
import Page from "../page.js";
|
2023-10-04 21:24:45 +00:00
|
|
|
import { $ } from "@wdio/globals";
|
2023-09-21 21:46:09 +00:00
|
|
|
|
|
|
|
export class ApplicationForm extends Page {
|
|
|
|
get name() {
|
|
|
|
return $('>>>ak-form-element-horizontal input[name="name"]');
|
|
|
|
}
|
2023-09-27 22:30:56 +00:00
|
|
|
|
|
|
|
get uiSettings() {
|
|
|
|
return $('>>>ak-form-group button[aria-label="UI Settings"]');
|
|
|
|
}
|
|
|
|
|
|
|
|
get launchUrl() {
|
|
|
|
return $('>>>input[name="metaLaunchUrl"]');
|
|
|
|
}
|
2023-09-21 21:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default new ApplicationForm();
|