@atomic-testing/component-driver-mui-v9 0.95.0 → 0.97.0

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/dist/index.cjs CHANGED
@@ -628,8 +628,9 @@ var DialogDriver = class extends _atomic_testing_core.ContainerDriver {
628
628
  x: 5,
629
629
  y: 5
630
630
  } };
631
- await this.parts.dialogContainer.mouseDown(cornerClick);
632
- await this.parts.dialogContainer.mouseUp(cornerClick);
631
+ const containerLocator = this.parts.dialogContainer.locator;
632
+ await this.interactor.mouseDown(containerLocator, cornerClick);
633
+ await this.interactor.mouseUp(containerLocator, cornerClick);
633
634
  await this.parts.dialogContainer.click(cornerClick);
634
635
  return this.waitForClose(timeoutMs);
635
636
  }