Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "description": "Chrome Endure test for GMail.", | |
| 3 "archive_data_file": "../data/gmail_alt_two_labels.json", | |
| 4 "credentials_path": "../data/credentials.json", | |
| 5 "user_agent_type": "desktop", | |
| 6 "pages": [ | |
| 7 { | |
| 8 "url": "https://mail.google.com/mail/", | |
| 9 "why": "Alternate between Inbox and Sent Mail", | |
| 10 "credentials": "google", | |
| 11 "navigate_steps" : [ | |
| 12 { "action": "navigate" }, | |
| 13 { "action": "wait", "condition": "javascript", "javascript": "window.gmo nkey !== undefined && document.getElementById('gb') !== null"} | |
|
dennis_jeffrey
2013/08/27 20:02:35
add space before the closing }
edmundyan
2013/08/27 23:01:48
Done.
| |
| 14 ], | |
| 15 "endure": [ | |
| 16 { | |
| 17 "action": "click_element", | |
| 18 "selector": "a[href=\"https://mail.google.com/mail/u/0/?shva=1#sent\"] " | |
| 19 }, | |
| 20 { "action": "wait", "condition": "href_change" }, | |
| 21 { "action": "wait", "condition": "duration", "seconds": 1 }, | |
| 22 { | |
| 23 "action": "click_element", | |
| 24 "selector": "a[href=\"https://mail.google.com/mail/u/0/?shva=1#inbox\" ]" | |
| 25 }, | |
| 26 { "action": "wait", "condition": "href_change"}, | |
|
dennis_jeffrey
2013/08/27 20:02:35
add space before the closing }
edmundyan
2013/08/27 23:01:48
Done.
| |
| 27 { "action": "wait", "condition": "duration", "seconds": 1 } | |
| 28 ] | |
| 29 } | |
| 30 ] | |
| 31 } | |
| OLD | NEW |