@checksum-ai/runtime 1.0.89 → 1.0.91

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.
@@ -28,6 +28,23 @@ export default getChecksumConfig({
28
28
  */
29
29
  password: "<password>",
30
30
 
31
+ /**
32
+ * The credentials of the users that will be used to login into your testing environment
33
+ * Uncomment if you require support for multiple users
34
+ */
35
+ // users: [
36
+ // {
37
+ // role: "host",
38
+ // username: "<host username>",
39
+ // password: "<host password>",
40
+ // },
41
+ // {
42
+ // role: "guest",
43
+ // username: "<guest username>",
44
+ // password: "<guest password>",
45
+ // },
46
+ // ],
47
+
31
48
  options: {
32
49
  /**
33
50
  * Whether to use Checksum Smart Selector in order to recover from failing to locate an element for an action (see README)
@@ -29,7 +29,7 @@ export default defineConfig({
29
29
  video: "on",
30
30
  screenshot: "on",
31
31
  locale: "en-US",
32
- timezoneId: "America/Los_Angeles",
32
+ timezoneId: "UTC",
33
33
  permissions: ["clipboard-read"],
34
34
  actionTimeout: 1000 * 5, // set action timeout for 5 seconds. When an action times out, checksum's Autonomus Agent kicks in and attempts to fix the test.
35
35
  navigationTimeout: 1000 * 30,