@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.
@@ -33,14 +33,14 @@ export default getChecksumConfig({
33
33
 
34
34
  options: {
35
35
  /**
36
- * Whether to fallback to ESRA if the action selector is not found
36
+ * Whether to use Checksum Smart Selector when trying to locate elements
37
37
  */
38
- actionsESRAfallback: true,
38
+ useChecksumSelectors: true,
39
39
 
40
40
  /**
41
- * Whether to use LLM fallback if action selector is not found
41
+ * Whether to use Checksum AI when trying to locate elements
42
42
  */
43
- actionsLLMFallback: true,
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
- * fallback to ESRA if the action selector is not found
18
+ * Whether to use Checksum Smart Selector when trying to locate elements
19
19
  */
20
- actionsESRAfallback: boolean;
20
+ useChecksumSelectors: boolean;
21
21
  /**
22
- * use LLM fallback if action selector is not found
22
+ * Whether to use Checksum AI when trying to locate elements
23
23
  */
24
- actionsLLMFallback: boolean;
24
+ useChecksumAI: boolean;
25
25
  /**
26
26
  * add new assertions
27
27
  */