@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 CHANGED
@@ -3557,10 +3557,10 @@ class CustomCommands {
3557
3557
  const pageContext = customPageContext !== null && customPageContext !== void 0 ? customPageContext : this.page;
3558
3558
  await pageContext.waitForLoadState("load");
3559
3559
  await Promise.all([
3560
- test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.pageLoader)).toBeHidden({
3560
+ test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.pageLoader)).toHaveCount(0, {
3561
3561
  timeout: visibilityTimeout,
3562
3562
  }),
3563
- test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.spinner)).toBeHidden({
3563
+ test$1.expect(pageContext.getByTestId(COMMON_SELECTORS.uiSpinner)).toHaveCount(0, {
3564
3564
  timeout: visibilityTimeout,
3565
3565
  }),
3566
3566
  ]);
@@ -3597,6 +3597,7 @@ class CustomCommands {
3597
3597
  await test$1.expect(this.page.getByTestId(selectMenu)).toBeVisible({
3598
3598
  timeout: options.visibilityTimeout,
3599
3599
  });
3600
+ await this.page.keyboard.type(value);
3600
3601
  await this.page
3601
3602
  .getByTestId(selectMenu)
3602
3603
  .getByText(value, { exact: true })