@atomic-testing/component-driver-mui-v9 0.94.0 → 0.96.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.mjs CHANGED
@@ -627,8 +627,9 @@ var DialogDriver = class extends ContainerDriver {
627
627
  x: 5,
628
628
  y: 5
629
629
  } };
630
- await this.parts.dialogContainer.mouseDown(cornerClick);
631
- await this.parts.dialogContainer.mouseUp(cornerClick);
630
+ const containerLocator = this.parts.dialogContainer.locator;
631
+ await this.interactor.mouseDown(containerLocator, cornerClick);
632
+ await this.interactor.mouseUp(containerLocator, cornerClick);
632
633
  await this.parts.dialogContainer.click(cornerClick);
633
634
  return this.waitForClose(timeoutMs);
634
635
  }