wisp-schema 1.18.7 → 1.19.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/version.rb +2 -2
- data/lib/wisp-schema.rb +1 -0
- data/stable/actions/store_value.json +33 -0
- data/stable/verbs.json +1 -0
- data/wisp.json +30 -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: 2ee3d80483890bbbf8b4e8291ec8fea256a43f12298fe838be3a50cd76c66530
|
4
|
+
data.tar.gz: b8e1695a06e8069db93dd3dbd3b4efb28ede70cc6128b435fa7e936c6e7d3b33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcfdbc98b572dae49b6783e25dd6c923009b111195ab1491c5beab9b99a19a8af828ed67095eefa94248ea915e3bb91eee0845a997f7095c155f605adf8e0cef
|
7
|
+
data.tar.gz: 1a811d63db37a46269f68363db4eeeb205f8439d646b9e005b963e9ede17bbd34f46d75cf588eb4184952031c4fd877e95bd25e82c4c7be39e1bf94a876fb6c8
|
data/lib/version.rb
CHANGED
data/lib/wisp-schema.rb
CHANGED
@@ -0,0 +1,33 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
3
|
+
"type": "object",
|
4
|
+
"action_type": "action",
|
5
|
+
"title": "Store Value",
|
6
|
+
"description": "Stores value of text under the mask in a temporary variable",
|
7
|
+
"properties": {
|
8
|
+
"action": {
|
9
|
+
"enum": ["store_value"]
|
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
|
+
"object": {
|
19
|
+
"title": "Object",
|
20
|
+
"$ref": "ui_element_reference.json"
|
21
|
+
},
|
22
|
+
"variable_name": {
|
23
|
+
"title": "The temporary variable name that will hold the text under the mask",
|
24
|
+
"type": "string"
|
25
|
+
},
|
26
|
+
"version": {
|
27
|
+
"type": "string",
|
28
|
+
"title": "Version"
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"additionalProperties": false,
|
32
|
+
"required": ["action", "object", "variable_name", "version"]
|
33
|
+
}
|
data/stable/verbs.json
CHANGED
@@ -24,6 +24,7 @@
|
|
24
24
|
{"$ref": "actions/drag_and_drop.json"},
|
25
25
|
{"$ref": "actions/tester_instruction.json"},
|
26
26
|
{"$ref": "actions/observe.json"},
|
27
|
+
{"$ref": "actions/store_value.json"},
|
27
28
|
{"$ref": "actions/tester_confirmation.json"},
|
28
29
|
{"$ref": "embeddings/embedded_test.json"}
|
29
30
|
]
|
data/wisp.json
CHANGED
@@ -154,6 +154,7 @@
|
|
154
154
|
{"$ref": "#/definitions/tester_instruction"},
|
155
155
|
{"$ref": "#/definitions/embedded_test"},
|
156
156
|
{"$ref": "#/definitions/observe"},
|
157
|
+
{"$ref": "#/definitions/store_value"},
|
157
158
|
{"$ref": "#/definitions/tester_confirmation"}
|
158
159
|
]
|
159
160
|
},
|
@@ -752,6 +753,35 @@
|
|
752
753
|
"additionalProperties": false,
|
753
754
|
"required": ["action", "object", "visibility"]
|
754
755
|
},
|
756
|
+
"store_value": {
|
757
|
+
"type": "object",
|
758
|
+
"action_type": "action",
|
759
|
+
"title": "Store Value",
|
760
|
+
"description": "Stores value of text under the mask in a temporary variable",
|
761
|
+
"properties": {
|
762
|
+
"action": {
|
763
|
+
"enum": ["store_value"]
|
764
|
+
},
|
765
|
+
"embedded_test_id": {"title": "Embedded Test ID", "type": "integer"},
|
766
|
+
"id": {"title": "Action ID", "type": "integer"},
|
767
|
+
"uniform_id": { "title": "Preserved Action ID", "type": "string" },
|
768
|
+
"job_step_id": {
|
769
|
+
"title": "The id of the action's related job step",
|
770
|
+
"type": "integer"
|
771
|
+
},
|
772
|
+
"delay_after": {"title": "Delay after in seconds", "type": "integer"},
|
773
|
+
"object": {
|
774
|
+
"title": "Object",
|
775
|
+
"$ref": "#/definitions/noun"
|
776
|
+
},
|
777
|
+
"variable_name": {
|
778
|
+
"title": "The temporary variable name that will hold the text under the mask",
|
779
|
+
"type": "string"
|
780
|
+
}
|
781
|
+
},
|
782
|
+
"additionalProperties": false,
|
783
|
+
"required": ["action", "object", "variable_name"]
|
784
|
+
},
|
755
785
|
"tester_confirmation": {
|
756
786
|
"type": "object",
|
757
787
|
"action_type": "assertion",
|
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.19.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Grodowski
|
@@ -93,6 +93,7 @@ files:
|
|
93
93
|
- stable/actions/scroll.json
|
94
94
|
- stable/actions/select.json
|
95
95
|
- stable/actions/send_key.json
|
96
|
+
- stable/actions/store_value.json
|
96
97
|
- stable/actions/tester_confirmation.json
|
97
98
|
- stable/actions/tester_instruction.json
|
98
99
|
- stable/actions/type.json
|