wisp-schema 1.15.1 → 1.16.1

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: 1b4da9e9e52e2f3eb3676060e827663812a8a6cac3b6927d907a202c227648a6
4
- data.tar.gz: a90e56c2d2d3bbb6266f35c4ae43fa64109eb2804e39d377fcf920d37c7691f8
3
+ metadata.gz: f20a9da1d89b096a6b7bd35bc81d9b2392051f59e138c24cca4c3b476a57ec33
4
+ data.tar.gz: fb16a805ae9903973d49dfcdc5efa7dc87bf2f2d058044d38fabe6f7889c15da
5
5
  SHA512:
6
- metadata.gz: b5c412a740cf167e099c252d61c9cfd2fe227c07fc9c080ed64134c5c764c8c88498185382718417d67370ec2f9e42c658b0e55ca9f1ca3f258ac168e1775db8
7
- data.tar.gz: b72e814722ff0b81514c0e0cde30d33d14b248d8bf2416a968ead4f066370dda38c07b6e8b955730de41963ef8bb686498b98515d29b3f72e40814eaa8413612
6
+ metadata.gz: b0eec465fa45294b579de618777d81ec08d5638650dae27a4336a5c29368c6eb1abfdb168a97f4c36b7b5632a274acc8e1f72df5b69c6966de9d6d7052df6133
7
+ data.tar.gz: 83acfd386f62ae67f30c59aa266fc30df16e861ad1b77bd0f5ba064606076b3c9af80462ef2979a126af1598cbf2a9a4a1b912e11ffdaa9c7c3f8af46bbe838b
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",
@@ -630,7 +632,7 @@
630
632
  "seconds": {
631
633
  "title": "seconds",
632
634
  "type": "integer",
633
- "minimum": 60,
635
+ "minimum": 30,
634
636
  "maximum": 3600
635
637
  },
636
638
  "visibility": {
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.1"
5
- STABLE_VERSION = "1.15.1"
4
+ VERSION = "1.16.1"
5
+ STABLE_VERSION = "1.16.1"
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",
@@ -21,7 +21,7 @@
21
21
  "seconds": {
22
22
  "title": "seconds",
23
23
  "type": "integer",
24
- "minimum": 60,
24
+ "minimum": 30,
25
25
  "maximum": 3600
26
26
  },
27
27
  "visibility": {
@@ -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",
@@ -630,7 +632,7 @@
630
632
  "seconds": {
631
633
  "title": "seconds",
632
634
  "type": "integer",
633
- "minimum": 60,
635
+ "minimum": 30,
634
636
  "maximum": 3600
635
637
  },
636
638
  "visibility": {
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.1
4
+ version: 1.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Grodowski