mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-08 07:03:28 -06:00
21 lines
506 B
JavaScript
21 lines
506 B
JavaScript
const ui = require('./spectronInterfaces.js');
|
|
|
|
class WebActions {
|
|
constructor(app) {
|
|
this.app = app;
|
|
}
|
|
|
|
async clickMaximizeButton(){
|
|
await this.app.client.waitForVisible(ui.MAXIMIZE_BTN, 10000).click(ui.MAXIMIZE_BTN);
|
|
}
|
|
|
|
async maximizeWindows() {
|
|
await this.clickMaximizeButton();
|
|
await this.app.browserWindow.isMaximized().then(function (maximized) {
|
|
expect(maximized).toBeTruthy();
|
|
})
|
|
}
|
|
}
|
|
|
|
module.exports = WebActions;
|