| OLD | NEW |
| 1 { | 1 { |
| 2 "description": [ | 2 "description": [ |
| 3 "Pages for testing starting Chrome with a URL. ", | 3 "Pages for testing starting Chrome with a URL. ", |
| 4 "Note that this file can't be used with record_wpr, since record_wpr ", | 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.", | 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."], | 6 "Instead use record_wpr startup_pages_record to record data for this test."], |
| 7 "archive_data_file": "data/startup_pages.json", | 7 "archive_data_file": "data/startup_pages.json", |
| 8 "pages": [ | 8 "pages": [ |
| 9 { | 9 { |
| 10 "url": "about:blank", | 10 "url": "about:blank", |
| 11 "why": "typical page", | 11 "why": "typical page", |
| 12 "navigate_steps" : [ | 12 "navigate_steps" : [ |
| 13 {"action": "set_startup_url", "startup_url": "about:blank"}, | 13 {"action": "set_startup_url", "startup_url": "about:blank"}, |
| 14 {"action": "wait", "seconds": 10 } | 14 {"action": "wait", "seconds": 10 } |
| 15 ] | 15 ] |
| 16 }, | 16 }, |
| 17 { | 17 { |
| 18 "url": "http://news.bbc.co.uk", | 18 "url": "http://bbc.co.uk", |
| 19 "why": "typical page", | 19 "why": "typical page", |
| 20 "navigate_steps" : [ | 20 "navigate_steps" : [ |
| 21 {"action": "set_startup_url", "startup_url": "http://news.bbc.co.uk"}, | 21 {"action": "set_startup_url", "startup_url": "http://bbc.co.uk"}, |
| 22 {"action": "wait", "seconds": 10 } | 22 {"action": "wait", "seconds": 10 } |
| 23 ] | 23 ] |
| 24 }, | 24 }, |
| 25 { | 25 { |
| 26 "url": "http://kapook.com", | 26 "url": "http://kapook.com", |
| 27 "why": "Horribly complex page - stress test!", | 27 "why": "Horribly complex page - stress test!", |
| 28 "navigate_steps" : [ | 28 "navigate_steps" : [ |
| 29 {"action": "set_startup_url", "startup_url": "http://kapook.com"}, | 29 {"action": "set_startup_url", "startup_url": "http://kapook.com"}, |
| 30 {"action": "wait", "seconds": 10 } | 30 {"action": "wait", "seconds": 10 } |
| 31 ] | 31 ] |
| 32 } | 32 } |
| 33 ] | 33 ] |
| 34 } | 34 } |
| OLD | NEW |