OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "description": "Pages for testing starting Chrome with a URL", | |
3 "description": "Use record_wpr startup_pages_record to record data for this te st", | |
jeremy
2013/12/15 13:03:36
Why 2 description keys?
aberent
2013/12/16 17:07:43
A mistake :-(. However JSON doesn't allow multilin
| |
4 "archive_data_file": "data/startup_pages.json", | |
5 "pages": [ | |
6 { | |
7 "url": "about:blank", | |
8 "why": "typical page", | |
9 "navigate_steps" : [ | |
10 {"action": "set_startup_url", "startup_url": "about:blank"}, | |
11 {"action": "wait", "seconds": 10 } | |
12 ] | |
13 }, | |
14 { | |
15 "url": "http://news.bbc.co.uk", | |
16 "why": "typical page", | |
17 "navigate_steps" : [ | |
18 {"action": "set_startup_url", "startup_url": "http://news.bbc.co.uk"}, | |
19 {"action": "wait", "seconds": 10 } | |
20 ] | |
21 }, | |
22 { | |
23 "url": "http://kapook.com", | |
24 "why": "Horribly complex page - stress test!", | |
25 "navigate_steps" : [ | |
26 {"action": "set_startup_url", "startup_url": "http://kapook.com"}, | |
27 {"action": "wait", "seconds": 10 } | |
28 ] | |
29 } | |
30 ] | |
31 } | |
OLD | NEW |