Tests: Make acceptance tests more stable

This commit is contained in:
Theresa Gresch 2026-06-25 15:29:11 +02:00
parent 9ff36af70c
commit cd0deacbc1
2 changed files with 2 additions and 2 deletions

View file

@ -41,5 +41,5 @@ test.meta("testID", "sphere-003").meta({ mode: "public" })("Common: Opens 360°
await photoviewer.openPhotoViewer("uid", uid);
await t.expect(Selector("div.pswp__media--sphere").exists).ok({ timeout: 5000 });
await t.expect(Selector("div.pswp__media--sphere video").exists).ok({ timeout: 10000 });
await t.expect(Selector("div.pswp__media--sphere video").exists).ok({ timeout: 30000 });
});

View file

@ -21,7 +21,7 @@ export default class Page {
this.locationInput = Selector("div.p-meta-location-dialog .input-coordinates input", { timeout: 15000 });
this.locationConfirm = Selector("div.p-meta-location-dialog button.action-confirm", { timeout: 15000 });
this.locationCancel = Selector("div.p-meta-location-dialog button.action-cancel", { timeout: 15000 });
this.locationMarker = Selector("div.maplibregl-marker", { timeout: 15000 });
this.locationMarker = Selector("div.maplibregl-marker", { timeout: 30000 });
this.batchDialog = Selector("div.v-dialog--batch-edit");
this.batchDialogTitle = Selector("div.v-dialog--batch-edit div.v-toolbar-title");