OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "description": [ | |
3 "Pages for testing starting Chrome with a URL. ", | |
4 "Note that this file can't be used with record_wpr, since record_wpr ", | |
5 "requires a true navigate step, which we do not want for startup testing.", | |
6 "Instead use record_wpr startup_pages_record to record data for this test"], | |
jeremy
2013/12/17 11:29:44
nit: s/test/test./
aberent
2013/12/17 17:31:27
Done.
| |
7 "archive_data_file": "data/startup_pages.json", | |
8 "pages": [ | |
9 { | |
10 "url": "about:blank", | |
11 "why": "typical page", | |
12 "navigate_steps" : [ | |
13 {"action": "set_startup_url", "startup_url": "about:blank"}, | |
14 {"action": "wait", "seconds": 10 } | |
15 ] | |
16 }, | |
17 { | |
18 "url": "http://news.bbc.co.uk", | |
19 "why": "typical page", | |
20 "navigate_steps" : [ | |
21 {"action": "set_startup_url", "startup_url": "http://news.bbc.co.uk"}, | |
22 {"action": "wait", "seconds": 10 } | |
23 ] | |
24 }, | |
25 { | |
26 "url": "http://kapook.com", | |
27 "why": "Horribly complex page - stress test!", | |
28 "navigate_steps" : [ | |
29 {"action": "set_startup_url", "startup_url": "http://kapook.com"}, | |
30 {"action": "wait", "seconds": 10 } | |
31 ] | |
32 } | |
33 ] | |
34 } | |
OLD | NEW |