diff --git a/tests/playwright/pages/Account/License.ts b/tests/playwright/pages/Account/License.ts index b71d0afe03..ed5d1ce468 100644 --- a/tests/playwright/pages/Account/License.ts +++ b/tests/playwright/pages/Account/License.ts @@ -28,7 +28,10 @@ export class AccountLicensePage extends BasePage { } async saveLicenseKey(licenseKey: string) { - await this.get().waitFor({ state: 'visible' }); + // Kludge: fix me! + // await this.get().waitFor({ state: 'visible' }); + await this.rootPage.waitForTimeout(1000); + await this.get().fill(licenseKey); await this.getSaveButton().click(); await this.verifyToast({ message: 'License key updated' });