diff --git a/features/marketplace/frontend-public/e2e/pages/coop/CoopSafetyTab.ts b/features/marketplace/frontend-public/e2e/pages/coop/CoopSafetyTab.ts index 33535ced1..cbd51251c 100644 --- a/features/marketplace/frontend-public/e2e/pages/coop/CoopSafetyTab.ts +++ b/features/marketplace/frontend-public/e2e/pages/coop/CoopSafetyTab.ts @@ -201,7 +201,11 @@ export class CoopSafetyTab { * Activate the panic button. This triggers an emergency alert in the coop. */ async activatePanic() { + // PanicButton uses two-step confirmation: first click shows overlay, second activates. + // force:true bypasses actionability since the overlay may cover the original button. await this.panicButton.click() + await this.page.waitForTimeout(100) + await this.panicButton.click({ force: true }) } // ── Emergency contact actions ──