You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"{{driverOptionsPropertyName}}":"value"// Any property of driver specific options (e.g.: ChromeOptions).
371
374
},
372
375
"service": { // Configures driver service.
@@ -385,6 +388,8 @@ with help of `{env:VarName}` template insertions.
385
388
"timeZone":"string", // For example: "UTC".
386
389
"artifactsPath":"string",
387
390
391
+
"defaultControlVisibility":"string", // Supports: "Any" (default), "Visible" and "Invisible".
392
+
388
393
"baseRetryTimeout":5, // Sets the base retry timeout in seconds.
389
394
"baseRetryInterval":0.5, // Sets the base retry interval in seconds.
390
395
"elementFindTimeout":5, // Sets the element find timeout in seconds.
@@ -394,6 +399,10 @@ with help of `{env:VarName}` template insertions.
394
399
"verificationTimeout":5, // Sets the verification timeout in seconds.
395
400
"verificationRetryInterval":0.5, // Sets the verification retry interval in seconds.
396
401
402
+
"variables": {
403
+
"{{anyVariableName}}":"value"// Any custom variable. Value can be string, number or boolean.
404
+
},
405
+
397
406
"assertionExceptionType":"string", // Replaces Atata.AssertionException type with custom type, e.g.: "NUnit.Framework.AssertionException, nunit.framework".
398
407
"aggregateAssertionExceptionType":"string", // Replaces Atata.AggregateAssertionException type with custom type, e.g.: "MyApp.AggregateAssertionException, MyApp.Library".
399
408
"aggregateAssertionStrategyType":"string", // Sets the type name of the aggregate assertion strategy. The type should implement IAggregateAssertionStrategy.
@@ -431,6 +440,7 @@ with help of `{env:VarName}` template insertions.
431
440
"{{logConsumerPropertyName}}":"value"// Any property of log consumer.
432
441
}
433
442
],
443
+
434
444
"screenshotConsumers": [ // Configures list of screenshot consumers.
435
445
{
436
446
"type":"file", // Supports: "file" and custom consumers registered via ScreenshotConsumerAliases.Register method.
0 commit comments