@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.cjs.js +2 -2
- package/index.cjs.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -114317,7 +114317,7 @@ const THEMES_TEXTS = {
|
|
|
114317
114317
|
|
|
114318
114318
|
class HelpAndProfilePage {
|
|
114319
114319
|
constructor({ page, neetoPlaywrightUtilities, chatApiBaseURL, kbDocsBaseURL, changelogBaseURL, }) {
|
|
114320
|
-
this.hoverOnBody = () => this.page.locator("body").hover();
|
|
114320
|
+
this.hoverOnBody = () => this.page.locator("body").hover({ timeout: 10000 });
|
|
114321
114321
|
this.openHelpCenter = async () => {
|
|
114322
114322
|
await test.expect(async () => {
|
|
114323
114323
|
await this.hoverOnBody();
|
|
@@ -114325,7 +114325,7 @@ class HelpAndProfilePage {
|
|
|
114325
114325
|
await floatingActionMenuButton.scrollIntoViewIfNeeded();
|
|
114326
114326
|
await floatingActionMenuButton.hover();
|
|
114327
114327
|
await test.expect(this.page.getByTestId(HELP_CENTER_SELECTORS.chatButton)).toBeVisible();
|
|
114328
|
-
}).toPass({ timeout:
|
|
114328
|
+
}).toPass({ timeout: 60000 });
|
|
114329
114329
|
};
|
|
114330
114330
|
this.openLiveChatAndVerify = async (widgetVisibilityTimeout = 10000) => {
|
|
114331
114331
|
await test.expect(async () => {
|