@bigbinary/neeto-playwright-commons 1.26.27 → 1.26.28

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.
package/index.js CHANGED
@@ -114296,7 +114296,7 @@ const THEMES_TEXTS = {
114296
114296
 
114297
114297
  class HelpAndProfilePage {
114298
114298
  constructor({ page, neetoPlaywrightUtilities, chatApiBaseURL, kbDocsBaseURL, changelogBaseURL, }) {
114299
- this.hoverOnBody = () => this.page.locator("body").hover();
114299
+ this.hoverOnBody = () => this.page.locator("body").hover({ timeout: 10000 });
114300
114300
  this.openHelpCenter = async () => {
114301
114301
  await expect(async () => {
114302
114302
  await this.hoverOnBody();
@@ -114304,7 +114304,7 @@ class HelpAndProfilePage {
114304
114304
  await floatingActionMenuButton.scrollIntoViewIfNeeded();
114305
114305
  await floatingActionMenuButton.hover();
114306
114306
  await expect(this.page.getByTestId(HELP_CENTER_SELECTORS.chatButton)).toBeVisible();
114307
- }).toPass({ timeout: 15000 });
114307
+ }).toPass({ timeout: 60000 });
114308
114308
  };
114309
114309
  this.openLiveChatAndVerify = async (widgetVisibilityTimeout = 10000) => {
114310
114310
  await expect(async () => {