wisp-schema 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 194d0f471fb9ec7fb6287734d98822176ac2c798a45d6bafb3143a61b2e87bc1
4
- data.tar.gz: 12c361687b33d1c22638819d777221ab39bdefe081f1acf62e7563a045f3f42a
3
+ metadata.gz: f39dcc55023361b361396e14cf3c625718390c33ecccd7d8625c7bc87294c21c
4
+ data.tar.gz: 5233a1b5b06953020b1e1612799067c9da19d346ddc1962c47f3f43ab2b05a74
5
5
  SHA512:
6
- metadata.gz: fb5dd9fdf8d0bf0b2545236c171697012ed65c810d7911e2932f9567958d64e21040b1222a96e79653ec540b6eb41e82cf26f21525ff3ad7139e93dfc77b00fb
7
- data.tar.gz: d906c41b460d1c9891f57f356e23b130177d66c6ec9935b816197050c3d7f7362963afd4c7c77e8ddad34d9815948e41571efcc68e6a4ac3ee3fa41ab3184a26
6
+ metadata.gz: d00b491b95f02429559a8b5c4bf384f57a4627d2a117092e2461e45c957c6ef4de7ea5570c43bb8c622698831d5a5031b84b6e094ee2eda1ef499ef16714eef7
7
+ data.tar.gz: 729722e6257b61e96c668c783922176bef9c2f90e7ed48e5c8a1a089043b7862be7e1e2a8540dd75c840523f8507860ff0b6066651745978d7adcc40771b54bc
data/canary-nouns.json CHANGED
@@ -13,12 +13,13 @@
13
13
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
14
14
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
15
15
  "match_mode": {
16
- "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search"]
16
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
17
17
  },
18
18
  "image_match_mode": {
19
19
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
20
20
  },
21
21
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
22
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
22
23
  "ocr_expression": {
23
24
  "title": "Expression to use for text matching",
24
25
  "type": "string",
@@ -83,6 +84,7 @@
83
84
  },
84
85
  "id": {"title": "UI Element ID", "type": "integer"},
85
86
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
87
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
86
88
  "text_matchers": {
87
89
  "type": "array",
88
90
  "title": "Mask text-matching collection",
data/canary-wisp.json CHANGED
@@ -20,12 +20,13 @@
20
20
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
21
21
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
22
22
  "match_mode": {
23
- "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search"]
23
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
24
24
  },
25
25
  "image_match_mode": {
26
26
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
27
27
  },
28
28
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
29
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
29
30
  "ocr_expression": {
30
31
  "title": "Expression to use for text matching",
31
32
  "type": "string",
@@ -90,6 +91,7 @@
90
91
  },
91
92
  "id": {"title": "UI Element ID", "type": "integer"},
92
93
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
94
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
93
95
  "text_matchers": {
94
96
  "type": "array",
95
97
  "title": "Mask text-matching collection",
@@ -272,7 +274,7 @@
272
274
  }
273
275
  },
274
276
  "additionalProperties": false,
275
- "required": ["action", "object", "visibility", "version", "conditional_blocks"]
277
+ "required": ["action", "object", "visibility", "conditional_blocks"]
276
278
  },
277
279
  "double_click": {
278
280
  "type": "object",
data/lib/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wisp
4
- VERSION = "1.15.0"
5
- STABLE_VERSION = "1.15.0"
4
+ VERSION = "1.16.0"
5
+ STABLE_VERSION = "1.16.0"
6
6
  CANARY_VERSION = "2.0.0"
7
7
  end
data/nouns.json CHANGED
@@ -13,12 +13,13 @@
13
13
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
14
14
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
15
15
  "match_mode": {
16
- "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search"]
16
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
17
17
  },
18
18
  "image_match_mode": {
19
19
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
20
20
  },
21
21
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
22
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
22
23
  "ocr_expression": {
23
24
  "title": "Expression to use for text matching",
24
25
  "type": "string",
@@ -83,6 +84,7 @@
83
84
  },
84
85
  "id": {"title": "UI Element ID", "type": "integer"},
85
86
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
87
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
86
88
  "text_matchers": {
87
89
  "type": "array",
88
90
  "title": "Mask text-matching collection",
@@ -9,6 +9,7 @@
9
9
  },
10
10
  "id": {"title": "UI Element ID", "type": "integer"},
11
11
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
12
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
12
13
  "text_matchers": {
13
14
  "type": "array",
14
15
  "title": "Mask text-matching collection",
data/wisp.json CHANGED
@@ -20,12 +20,13 @@
20
20
  "focus_x": {"title": "Focus offset for x-axis from top left corner", "type": "integer", "options": {"hidden": true}},
21
21
  "focus_y": {"title": "Focus offset for y-axis from top left corner", "type": "integer", "options": {"hidden": true}},
22
22
  "match_mode": {
23
- "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search"]
23
+ "enum": ["pixel", "pixel_and_ocr", "semantic", "strict", "ai_search", "dom_selector"]
24
24
  },
25
25
  "image_match_mode": {
26
26
  "enum": ["pixel", "pixel_and_ocr", "semantic", "strict"]
27
27
  },
28
28
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
29
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
29
30
  "ocr_expression": {
30
31
  "title": "Expression to use for text matching",
31
32
  "type": "string",
@@ -90,6 +91,7 @@
90
91
  },
91
92
  "id": {"title": "UI Element ID", "type": "integer"},
92
93
  "search_term": {"title": "Text describing UI Element or it's location", "type": "string"},
94
+ "dom_selector": {"title": "CSS Selector or XPath used to locate element", "type": "string"},
93
95
  "text_matchers": {
94
96
  "type": "array",
95
97
  "title": "Mask text-matching collection",
@@ -272,7 +274,7 @@
272
274
  }
273
275
  },
274
276
  "additionalProperties": false,
275
- "required": ["action", "object", "visibility", "version", "conditional_blocks"]
277
+ "required": ["action", "object", "visibility", "conditional_blocks"]
276
278
  },
277
279
  "double_click": {
278
280
  "type": "object",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wisp-schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski