-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathworkflow.json
More file actions
53 lines (53 loc) · 1.07 KB
/
workflow.json
File metadata and controls
53 lines (53 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"Host": "127.0.0.1",
"Port": 3270,
"EveryStepDelay": { "Min": 0.1, "Max": 0.3 },
"OutputFilePath": "output.html",
"RampUpBatchSize": 50,
"RampUpDelay": 1.5,
"EndOfTaskDelay": { "Min": 60, "Max": 120 },
"Steps": [
{
"Type": "Connect"
},
{
"Type": "AsciiScreenGrab"
},
{
"Type": "CheckValue",
"Coordinates": {"Row": 1, "Column": 29, "Length": 24},
"Text": "3270 Example Application"
},
{
"Type": "FillString",
"Coordinates": {"Row": 5, "Column": 21},
"Text": "user1-firstname"
},
{
"Type": "FillString",
"Coordinates": {"Row": 6, "Column": 21},
"Text": "user1-lastname"
},
{
"Type": "AsciiScreenGrab"
},
{
"Type": "StepDelay",
"StepDelay": { "Min": 1.0, "Max": 2.0 }
},
{
"Type": "PressEnter"
},
{
"Type": "CheckValue",
"Coordinates": {"Row": 1, "Column": 29, "Length": 24},
"Text": "3270 Example Application"
},
{
"Type": "AsciiScreenGrab"
},
{
"Type": "Disconnect"
}
]
}