Fixes and improvements

This commit is contained in:
2026-07-07 09:29:56 +03:00
parent 784ce673b6
commit ba37eabea9
6 changed files with 238 additions and 15 deletions
+7
View File
@@ -4,6 +4,10 @@ export type CheckType =
| "attribute-equals"
| "css-property"
| "element-count"
| "interaction-text-contains"
| "interaction-attribute-equals"
| "interaction-css-property"
| "interaction-element-count"
| "visual-match";
export type CheckDefinition = {
@@ -13,6 +17,9 @@ export type CheckDefinition = {
value?: string;
attribute?: string;
property?: string;
actionSelector?: string;
inputSelector?: string;
inputValue?: string;
count?: number;
threshold?: number;
weight?: number;