automation_model 1.0.841-dev → 1.0.843-dev
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/lib/file_checker.js.map +1 -1
- package/lib/locator_log.js.map +1 -1
- package/lib/route.d.ts +3 -0
- package/lib/route.js +40 -4
- package/lib/route.js.map +1 -1
- package/lib/scripts/axe.mini.js +23994 -1
- package/lib/stable_browser.d.ts +1 -1
- package/lib/stable_browser.js +1 -1
- package/lib/stable_browser.js.map +1 -1
- package/lib/utils.d.ts +4 -2
- package/lib/utils.js +2 -4
- package/lib/utils.js.map +1 -1
- package/package.json +5 -2
package/lib/stable_browser.d.ts
CHANGED
|
@@ -146,7 +146,7 @@ declare class StableBrowser {
|
|
|
146
146
|
totp: string | null;
|
|
147
147
|
};
|
|
148
148
|
loadTestDataAsync(type: string, dataSelector: string, world?: null): Promise<any>;
|
|
149
|
-
getTestData(world?: null):
|
|
149
|
+
getTestData(world?: null): any;
|
|
150
150
|
_screenShot(options?: {}, world?: null, info?: null): Promise<{}>;
|
|
151
151
|
takeScreenshot(screenshotPath: any): Promise<any>;
|
|
152
152
|
verifyElementExistInPage(selectors: any, _params?: null, options?: {}, world?: null): Promise<any>;
|
package/lib/stable_browser.js
CHANGED
|
@@ -3624,7 +3624,7 @@ class StableBrowser {
|
|
|
3624
3624
|
Object.assign(e, { info: info });
|
|
3625
3625
|
error = e;
|
|
3626
3626
|
// throw e;
|
|
3627
|
-
await _commandError({ text: "visualVerification", operation: "visualVerification",
|
|
3627
|
+
await _commandError({ text: "visualVerification", operation: "visualVerification", info }, e, this);
|
|
3628
3628
|
}
|
|
3629
3629
|
finally {
|
|
3630
3630
|
const endTime = Date.now();
|