-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.json
53 lines (52 loc) · 923 Bytes
/
config.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
46
47
48
49
50
51
52
53
{
"DownloadFolder": "C:\\",
"DownloadFilename": "windows11.iso",
"Actions": [
{
"Order": 1,
"Kind": "Goto",
"Parameters": {
"Url": "https://www.microsoft.com/en-us/software-download/windows11/"
}
},
{
"Order": 2,
"Kind": "SelectOption",
"Parameters": {
"Selector": "#product-edition",
"Values": "2935"
}
},
{
"Order": 3,
"Kind": "Click",
"Parameters": {
"Selector": "#submit-product-edition"
}
},
{
"Order": 4,
"Kind": "SelectOption",
"WaitBeforeAction": 2500,
"Parameters": {
"Selector": "#product-languages",
"Values": "{\"id\":\"17442\",\"language\":\"English\"}"
}
},
{
"Order": 5,
"Kind": "Click",
"Parameters": {
"Selector": "#submit-sku"
}
},
{
"Order": 6,
"Kind": "QuerySelector",
"WaitBeforeAction": 5000,
"Parameters": {
"Selector": "#card-info-content .button"
}
}
]
}