-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimrad.json
47 lines (47 loc) · 1.91 KB
/
simrad.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
{
"ProductRange": {
"test": "doc.Css(\"#mainColumnRight > h3:nth-child(2)\").InnerText = \"Other products\"",
"pageLinks":{
"productCategories": "#mainColumnCenter3Col > ul > li > a"
},
"properties": {
"title": "innertext:#mainColumnCenter3Col > h1:nth-of-type(1)",
"intro": "innertext:#mainColumnCenter3Col > h2:nth-of-type(1)",
"body": "outerhtml:#mainColumnCenter3Col > p"
}
},
"ProductCategory": {
"test": "doc.Css(\"#mainColumnCenter3Col > h3:nth-of-type(1)\").InnerText = \"Product group\"",
"pageLinks": {
"products": "#mainColumnCenter3Col ul:nth-of-type(2) li a"
},
"properties": {
"title": "innertext:#mainColumnCenter3Col > h1:nth-of-type(1)",
"intro": "innertext:#mainColumnCenter3Col > h2:nth-of-type(1)",
"body": "outerhtml:#mainColumnCenter3Col > p"
}
},
"ProductSubCategory": {
"test": "doc.Css(\"#mainColumnCenter3Col > h3:nth-of-type(1)\").InnerText = doc.Css(\"#mainColumnRight > h3:nth-of-type(1)\").InnerText",
"pageLinks": {
"products": "#mainColumnCenter3Col > ul > li > a"
},
"properties": {
"title": "innertext:#mainColumnCenter3Col > h2:nth-of-type(1)"
}
},
"ProductSubCategoryDownloads": {
"test": "doc.Css(\"#mainColumnCenter3Col > p:nth-of-type(1)\").InnerText.StartsWith(\"Unless otherwise\")",
"properties": {
"downloads": "download:#mainColumnCenter3Col > table td a"
}
},
"Product": {
"test": "doc.Css(\"#mainColumnCenter3Col > h1:nth-of-type(1)\").InnerText.StartsWith(doc.Css(\"#mainColumnRight > h3:nth-of-type(1)\").InnerText) OR doc.Css(\"#mainColumnRight > h3:nth-of-type(1)\").InnerText.StartsWith(\"The following\") OR doc.Css(\"#mainColumnRight > h3:nth-of-type(1)\").InnerText = \"PX Family\"",
"properties": {
"title": "innertext:#mainColumnCenter3Col > h1:nth-of-type(1)",
"intro": "innertext:#mainColumnCenter3Col > h2:nth-of-type(1)",
"body": "outerhtml:#mainColumnCenter3Col p, #mainColumnCenter3Col ul"
}
}
}