1
0
mirror of https://git.cloudron.io/cloudron/minio-app synced 2025-09-01 23:04:59 +00:00

Version 3.4.0

This commit is contained in:
Girish Ramakrishnan
2023-01-03 18:06:51 +01:00
parent 15f02a8d0f
commit 9ee3f02a10
3 changed files with 18 additions and 1 deletions

View File

@@ -75,7 +75,11 @@ describe('Application life cycle test', function () {
await browser.sleep(2000);
await browser.findElement(By.xpath('//input[@id="bucket-name"]')).sendKeys(BUCKET);
await browser.findElement(By.xpath('//button[@id="create-bucket"]')).click();
await waitForElement(By.xpath(`//a[contains(text(), "${BUCKET}")]`));
if (app.manifest.version === '3.4.0') {
await waitForElement(By.xpath(`//h1[contains(text(), "${BUCKET}")]`));
} else {
await waitForElement(By.xpath(`//a[contains(text(), "${BUCKET}")]`));
}
await delay(5000);
}