Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: tools/perf/page_sets/startup_pages.json

Issue 113563004: Add perf tests for starting Chrome with URL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test descriptions in start_with_url Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698