@bigbinary/neeto-playwright-commons 1.11.5 → 1.11.7
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 +3 -2
- package/index.cjs.js.map +1 -1
- package/index.js +3 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3510,10 +3510,10 @@ class CustomCommands {
|
|
|
3510
3510
|
const pageContext = customPageContext !== null && customPageContext !== void 0 ? customPageContext : this.page;
|
|
3511
3511
|
await pageContext.waitForLoadState("load");
|
|
3512
3512
|
await Promise.all([
|
|
3513
|
-
expect(pageContext.getByTestId(COMMON_SELECTORS.pageLoader)).
|
|
3513
|
+
expect(pageContext.getByTestId(COMMON_SELECTORS.pageLoader)).toHaveCount(0, {
|
|
3514
3514
|
timeout: visibilityTimeout,
|
|
3515
3515
|
}),
|
|
3516
|
-
expect(pageContext.getByTestId(COMMON_SELECTORS.
|
|
3516
|
+
expect(pageContext.getByTestId(COMMON_SELECTORS.uiSpinner)).toHaveCount(0, {
|
|
3517
3517
|
timeout: visibilityTimeout,
|
|
3518
3518
|
}),
|
|
3519
3519
|
]);
|
|
@@ -3550,6 +3550,7 @@ class CustomCommands {
|
|
|
3550
3550
|
await expect(this.page.getByTestId(selectMenu)).toBeVisible({
|
|
3551
3551
|
timeout: options.visibilityTimeout,
|
|
3552
3552
|
});
|
|
3553
|
+
await this.page.keyboard.type(value);
|
|
3553
3554
|
await this.page
|
|
3554
3555
|
.getByTestId(selectMenu)
|
|
3555
3556
|
.getByText(value, { exact: true })
|