@checksum-ai/runtime 1.0.16 → 1.0.18
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/checksum-root/checksum.config.ts +4 -4
- package/index.d.ts +4 -4
- package/index.js +77 -94
- package/package.json +1 -1
|
@@ -33,14 +33,14 @@ export default getChecksumConfig({
|
|
|
33
33
|
|
|
34
34
|
options: {
|
|
35
35
|
/**
|
|
36
|
-
* Whether to
|
|
36
|
+
* Whether to use Checksum Smart Selector when trying to locate elements
|
|
37
37
|
*/
|
|
38
|
-
|
|
38
|
+
useChecksumSelectors: true,
|
|
39
39
|
|
|
40
40
|
/**
|
|
41
|
-
* Whether to use
|
|
41
|
+
* Whether to use Checksum AI when trying to locate elements
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
useChecksumAI: true,
|
|
44
44
|
|
|
45
45
|
/**
|
|
46
46
|
* Whether to use mock API data when running your tests
|
package/index.d.ts
CHANGED
|
@@ -15,13 +15,13 @@ export enum RunMode {
|
|
|
15
15
|
|
|
16
16
|
export type RuntimeOptions = {
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Whether to use Checksum Smart Selector when trying to locate elements
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
useChecksumSelectors: boolean;
|
|
21
21
|
/**
|
|
22
|
-
* use
|
|
22
|
+
* Whether to use Checksum AI when trying to locate elements
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
useChecksumAI: boolean;
|
|
25
25
|
/**
|
|
26
26
|
* add new assertions
|
|
27
27
|
*/
|