[ACS-12069] Stabilize multibrowser test runs pt2 -> tests include + small fixes + multibrowser workflow manual trigger added (#5246)

* [ACS-12069] tests include + small fixes

* [ACS-12069] XAT-4526 fixes

* [ACS12069] changed toBe to toContain for getSortedColumnHeaderText usage

* [ACS-12069] XAT-4523 improvement

* [ACS-12069] sort list fixes
This commit is contained in:
Adam Świderski
2026-06-30 09:58:45 +02:00
committed by GitHub
parent 5892dfbdee
commit c5a6e8114e
15 changed files with 20 additions and 88 deletions
@@ -1,9 +1,3 @@
{
"all": {},
"firefox": {
"XAT-5417": "https://hyland.atlassian.net/browse/ACS-10917"
},
"webkit": {
"XAT-5417": "https://hyland.atlassian.net/browse/ACS-10917"
}
"all": {}
}
@@ -125,7 +125,7 @@ test.describe('viewer action file', () => {
const downloadPromise = personalFiles.page.waitForEvent('download');
await personalFiles.acaHeader.downloadButtonViewer.click();
const download = await downloadPromise;
expect(download.suggestedFilename()).toBe(randomDocxName);
expect(download.suggestedFilename()).toContain(randomDocxName);
});
test('[XAT-5415] Full screen action', async ({ personalFiles }) => {