@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 +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/components/DialogDriver.ts +5 -2
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
|
-
|
|
631
|
-
await this.
|
|
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
|
}
|