wisp-schema 1.20.1 → 1.21.0
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.
- checksums.yaml +4 -4
- data/lib/version.rb +2 -2
- data/lib/wisp-schema.rb +1 -0
- data/stable/actions/triple_click.json +29 -0
- data/stable/verbs.json +1 -0
- data/wisp.json +27 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b92e1d7fabb20ea1e6c9d611a9f34320150cad9d401d80afe8ab6be7d3040e67
|
|
4
|
+
data.tar.gz: 2f9ab5264b35598eaef288c8cc304596797ddc2df75ba6dfff861fea5bf989e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e88cb6791b3d8e91449c08282a8b386b62cfdd66dcc1760d63f631e5b40bc1233625ef1b865f70b7556a3b4f2de871926697f68466a2ee2cbc6e288d418960b6
|
|
7
|
+
data.tar.gz: 21edd47543a861cb5c4f499c5057cebd13110946fced074772ca34a376d638260ac8c3e424454260038fce2c71abde7af8014a957654afcae98553f348724a02
|
data/lib/version.rb
CHANGED
data/lib/wisp-schema.rb
CHANGED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"action_type": "action",
|
|
5
|
+
"title": "Triple-click",
|
|
6
|
+
"description": "Triple-clicks on the UI element",
|
|
7
|
+
"properties": {
|
|
8
|
+
"action": {
|
|
9
|
+
"enum": ["triple_click"]
|
|
10
|
+
},
|
|
11
|
+
"id": {"title": "Action ID", "type": "integer"},
|
|
12
|
+
"uniform_id": { "title": "Preserved Action ID", "type": "string" },
|
|
13
|
+
"job_step_id": {
|
|
14
|
+
"title": "The id of the action's related job step",
|
|
15
|
+
"type": "integer"
|
|
16
|
+
},
|
|
17
|
+
"delay_after": {"title": "Delay after in seconds", "type": "integer"},
|
|
18
|
+
"target": {
|
|
19
|
+
"title": "Target",
|
|
20
|
+
"$ref": "ui_element_reference.json"
|
|
21
|
+
},
|
|
22
|
+
"version": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"title": "Version"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"additionalProperties": false,
|
|
28
|
+
"required": ["action", "target", "version"]
|
|
29
|
+
}
|
data/stable/verbs.json
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
{"$ref": "actions/comment.json"},
|
|
11
11
|
{"$ref": "actions/conditional_observe.json"},
|
|
12
12
|
{"$ref": "actions/double_click.json"},
|
|
13
|
+
{"$ref": "actions/triple_click.json"},
|
|
13
14
|
{"$ref": "actions/fill.json"},
|
|
14
15
|
{"$ref": "actions/generate_steps.json"},
|
|
15
16
|
{"$ref": "actions/type.json"},
|
data/wisp.json
CHANGED
|
@@ -153,6 +153,7 @@
|
|
|
153
153
|
{"$ref": "#/definitions/comment"},
|
|
154
154
|
{"$ref": "#/definitions/conditional_observe"},
|
|
155
155
|
{"$ref": "#/definitions/double_click"},
|
|
156
|
+
{"$ref": "#/definitions/triple_click"},
|
|
156
157
|
{"$ref": "#/definitions/fill"},
|
|
157
158
|
{"$ref": "#/definitions/generate_steps"},
|
|
158
159
|
{"$ref": "#/definitions/type"},
|
|
@@ -346,6 +347,32 @@
|
|
|
346
347
|
"additionalProperties": false,
|
|
347
348
|
"required": ["action", "target"]
|
|
348
349
|
},
|
|
350
|
+
"triple_click": {
|
|
351
|
+
"type": "object",
|
|
352
|
+
"action_type": "action",
|
|
353
|
+
"title": "Triple-click",
|
|
354
|
+
"description": "Triple-clicks on the UI element",
|
|
355
|
+
"properties": {
|
|
356
|
+
"action": {
|
|
357
|
+
"enum": ["triple_click"]
|
|
358
|
+
},
|
|
359
|
+
"embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
|
|
360
|
+
"id": {"title": "Action ID", "type": "integer"},
|
|
361
|
+
"uniform_id": { "title": "Preserved Action ID", "type": "string" },
|
|
362
|
+
"job_step_id": {
|
|
363
|
+
"title": "The id of the action's related job step",
|
|
364
|
+
"type": "integer"
|
|
365
|
+
},
|
|
366
|
+
"delay_after": {"title": "Delay after in seconds", "type": "integer"},
|
|
367
|
+
"target": {
|
|
368
|
+
"title": "Target",
|
|
369
|
+
"$ref": "#/definitions/noun",
|
|
370
|
+
"type": "ui_element_reference"
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
"additionalProperties": false,
|
|
374
|
+
"required": ["action", "target"]
|
|
375
|
+
},
|
|
349
376
|
"fill": {
|
|
350
377
|
"type": "object",
|
|
351
378
|
"action_type": "action",
|
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.
|
|
4
|
+
version: 1.21.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Grodowski
|
|
@@ -98,6 +98,7 @@ files:
|
|
|
98
98
|
- stable/actions/store_value.json
|
|
99
99
|
- stable/actions/tester_confirmation.json
|
|
100
100
|
- stable/actions/tester_instruction.json
|
|
101
|
+
- stable/actions/triple_click.json
|
|
101
102
|
- stable/actions/type.json
|
|
102
103
|
- stable/actions/ui_element_reference.json
|
|
103
104
|
- stable/actions/wait.json
|