@umbraco/playwright-testhelpers 16.0.18 → 16.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -350,6 +350,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
350
350
  async clickSaveAndPublishButton() {
351
351
  await (0, test_1.expect)(this.saveAndPublishBtn).toBeVisible();
352
352
  await this.saveAndPublishBtn.click();
353
+ await this.page.waitForTimeout(500);
353
354
  }
354
355
  async isSuccessStateVisibleForSaveAndPublishButton(isVisible = true) {
355
356
  const saveAndPublishBtn = this.workspaceAction.filter({ has: this.saveAndPublishBtn });
@@ -389,6 +390,7 @@ class ContentUiHelper extends UiBaseLocators_1.UiBaseLocators {
389
390
  async clickSaveButtonForContent() {
390
391
  await (0, test_1.expect)(this.saveContentBtn).toBeVisible();
391
392
  await this.saveContentBtn.click();
393
+ await this.page.waitForTimeout(500);
392
394
  }
393
395
  async enterTextstring(text) {
394
396
  await (0, test_1.expect)(this.textstringTxt).toBeVisible();