add tests for Upload New Version (#960)

This commit is contained in:
Adina Parpalita
2019-02-20 09:13:15 +02:00
committed by Cilibiu Bogdan
parent 9ceefff5e6
commit a2df75a6dc
18 changed files with 1837 additions and 84 deletions

View File

@@ -217,6 +217,21 @@ export class Toolbar extends Component {
return await this.menu.clickMenuItem('Copy');
}
async clickMoreActionsEditOffline() {
await this.openMoreMenu();
return await this.menu.clickMenuItem('Edit offline');
}
async clickMoreActionsCancelEditing() {
await this.openMoreMenu();
return await this.menu.clickMenuItem('Cancel editing');
}
async clickMoreActionsUploadNewVersion() {
await this.openMoreMenu();
return await this.menu.clickMenuItem('Upload new version');
}
async clickFullScreen() {
return await this.fullScreenButton.click();