1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-16 02:09:14 +00:00

Version 1.77.0

This commit is contained in:
Girish Ramakrishnan
2019-09-01 08:45:49 -07:00
parent ea4c66ea9e
commit 371db41bac
4 changed files with 7 additions and 4 deletions

View File

@@ -100,10 +100,10 @@ describe('Application life cycle test', function () {
}).then(function () {
return browser.findElement(by.className('fa-plus')).click();
}).then(function () {
const c = app.manifest.version === '1.75.0' ? 'fa-hdd' : 'fa-hdd-o';
const c = 'fa-hdd';
return visible(by.className(c));
}).then(function () {
const c = app.manifest.version === '1.75.0' ? 'fa-hdd' : 'fa-hdd-o';
const c = 'fa-hdd';
return browser.findElement(by.className(c)).click();
}).then(function () {
return visible(by.xpath('//*[@class="modal-body"]/form/div/input'));