@checksum-ai/runtime 1.0.81 → 1.0.83
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 +3 -3
- package/checksumlib.js +3 -3
- package/cli.js +4 -4
- package/index.d.ts +55 -4
- package/index.js +62 -62
- package/package.json +1 -1
- package/test-run-monitor.js +2 -2
|
@@ -30,13 +30,13 @@ export default getChecksumConfig({
|
|
|
30
30
|
|
|
31
31
|
options: {
|
|
32
32
|
/**
|
|
33
|
-
* Whether to use Checksum Smart Selector
|
|
33
|
+
* Whether to use Checksum Smart Selector in order to recover from failing to locate an element for an action (see README)
|
|
34
34
|
*/
|
|
35
35
|
useChecksumSelectors: true,
|
|
36
36
|
/**
|
|
37
|
-
* Whether to use Checksum AI
|
|
37
|
+
* Whether to use Checksum AI in order to recover from a failed action or assertion (see README)
|
|
38
38
|
*/
|
|
39
|
-
useChecksumAI: true,
|
|
39
|
+
useChecksumAI: { actions: true, assertions: false },
|
|
40
40
|
/**
|
|
41
41
|
* Whether to use mock API data when running your tests (see README)
|
|
42
42
|
*/
|