@bigbinary/neeto-playwright-commons 2.2.3 → 2.2.5
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 +1 -1
- package/index.cjs.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5952,7 +5952,7 @@ class CustomCommands {
|
|
|
5952
5952
|
await customPageContext.evaluate(button => {
|
|
5953
5953
|
button.dispatchEvent(new Event("click", { bubbles: true }));
|
|
5954
5954
|
}, buttonHandle);
|
|
5955
|
-
await expect(toastrCloseButton).toBeHidden();
|
|
5955
|
+
await expect(toastrCloseButton).toBeHidden({ timeout: 10_000 });
|
|
5956
5956
|
}
|
|
5957
5957
|
};
|
|
5958
5958
|
waitForPageLoad = async ({ visibilityTimeout = 35_000, customPageContext = this.page, waitForOption = "serial", } = {}) => {
|