[ACS-6688] excluding & fixing failing tests (#3624)

* [ACS-6688] excluding excluded tests

* [ACS-6688] Shortened notes for excluded tests

* [ACS-6688] New patch of excluded tests

* [ACS-6688] few more excluded + one test fixed + timeout longer for library actions

* [ACS-6688] added longer timeout for github actions failing test

* exclude user test fix in ACS-6699

* [ACS-6688] Next patch of fixed tests

* [ACS-6688] last batch of excludes and one test fix

* [ACS-6688] Trash Admin fix

* [ACS-6688] .only deleted from trash admin test

* [ACS-6688] Reverted the global-variables.ts file changes

* [ACS-6688] small fixes

* [ACS-6688] spaces changed

* [ACS-6688] trash admin test excluded

---------

Co-authored-by: akash.rathod@hyland.com <akash.rathod@hyland.com>
This commit is contained in:
Adam Świderski
2024-02-02 13:22:32 +01:00
committed by GitHub
parent 4e19bbeabd
commit c968c1cb7f
17 changed files with 173 additions and 32 deletions

View File

@@ -66,4 +66,10 @@ export class LoginPage extends BasePage {
const type = await this.password.getAttribute('type');
return type === 'text';
}
async verifyUserLogin(): Promise<void> {
if (this.username.isVisible()) {
await this.page.reload({ waitUntil:"load" });
}
}
}

View File

@@ -33,6 +33,7 @@ export const timeouts = {
extraLarge: 20 * 1000,
globalTest: 45 * 1000,
extendedTest: 150 * 1000,
extendedLongTest: 200 * 1000,
webServer: 240 * 1000,
globalSpec: 60 * 10 * 1000
};