-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathgoogle_search.json
More file actions
143 lines (143 loc) · 3.29 KB
/
google_search.json
File metadata and controls
143 lines (143 loc) · 3.29 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"id": "1764824758798",
"name": "Google Search",
"description": "Search Google for 'loopi browser automation' and take screenshot",
"nodes": [
{
"id": "1",
"type": "automationStep",
"data": {
"step": {
"id": "1",
"type": "navigate",
"description": "Go to Google",
"value": "https://www.google.com/"
}
},
"position": {
"x": 400,
"y": 48
}
},
{
"id": "2",
"type": "automationStep",
"data": {
"step": {
"id": "2",
"type": "type",
"description": "Enter search query",
"selector": "html > body > div:nth-of-type(2) > div:nth-of-type(4) > form > div > div > div > div > div:nth-of-type(2) > textarea",
"value": "Loopi: Open-Source Visual Browser Automation"
}
},
"position": {
"x": 400,
"y": 150
}
},
{
"id": "3",
"type": "automationStep",
"data": {
"step": {
"id": "3",
"type": "click",
"description": "Click search button",
"selector": "html > body > div:nth-of-type(2) > div:nth-of-type(4) > form > div > div > div:nth-of-type(2) > div:nth-of-type(4) > div:nth-of-type(2) > div > div > ul > li > div > div:nth-of-type(2) > div > div > span"
}
},
"position": {
"x": 400,
"y": 250
}
},
{
"id": "4",
"type": "automationStep",
"data": {
"step": {
"id": "4",
"type": "wait",
"description": "Wait for results",
"value": "2"
}
},
"position": {
"x": 400,
"y": 349
}
},
{
"id": "5",
"type": "automationStep",
"data": {
"step": {
"id": "5",
"type": "screenshot",
"description": "Capture results",
"savePath": "google_results.png"
}
},
"position": {
"x": 400,
"y": 450
}
}
],
"edges": [
{
"id": "e1-2",
"source": "1",
"target": "2"
},
{
"id": "e2-3",
"source": "2",
"target": "3"
},
{
"id": "e3-4",
"source": "3",
"target": "4"
},
{
"id": "e4-5",
"source": "4",
"target": "5"
}
],
"steps": [
{
"id": "1",
"type": "navigate",
"description": "Go to Google",
"value": "https://www.google.com/"
},
{
"id": "2",
"type": "type",
"description": "Enter search query",
"selector": "html > body > div:nth-of-type(2) > div:nth-of-type(4) > form > div > div > div > div > div:nth-of-type(2) > textarea",
"value": "automa browser automation"
},
{
"id": "3",
"type": "click",
"description": "Click search button",
"selector": "html > body > div:nth-of-type(2) > div:nth-of-type(4) > form > div > div > div:nth-of-type(2) > div:nth-of-type(4) > div:nth-of-type(2) > div > div > ul > li > div > div:nth-of-type(2) > div > div > span"
},
{
"id": "4",
"type": "wait",
"description": "Wait for results",
"value": "2"
},
{
"id": "5",
"type": "screenshot",
"description": "Capture results",
"savePath": "google_results.png"
}
]
}