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.
22 lines
504 B
TypeScript
22 lines
504 B
TypeScript
import AdminPage from "./admin.page.js";
|
|||
import { $ } from "@wdio/globals";
|
|||
|
|||
/**
|
|||
* sub page containing specific selectors and methods for a specific page
|
|||
*/
|
|||
class ApplicationsListPage extends AdminPage {
|
|||
/**
|
|||
* define selectors using getter methods
|
|||
*/
|
|||
|
|||
get startWizardButton() {
|
|||
return $('>>>ak-wizard-frame button[slot="trigger"]');
|
|||
}
|
|||
|
|||
async open() {
|
|||
return await super.open("if/admin/#/core/applications");
|
|||
}
|
|||
}
|
|||
|
|||
export default new ApplicationsListPage();
|