-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkflow.json
45 lines (45 loc) · 873 Bytes
/
workflow.json
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
{
"Host": "app1.3270.io",
"Port": 3270,
"OutputFilePath": "output.html",
"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": "PressEnter"
},
{
"Type": "CheckValue",
"Coordinates": {"Row": 1, "Column": 29, "Length": 24},
"Text": "3270 Example Application"
},
{
"Type": "AsciiScreenGrab"
},
{
"Type": "Disconnect"
}
]
}