OLD | NEW |
1 { | 1 { |
2 "description": "Chrome Endure test for IndexedDB.", | 2 "description": "Chrome Endure test for IndexedDB.", |
3 "user_agent_type": "desktop", | 3 "user_agent_type": "desktop", |
4 "pages": [ | 4 "pages": [ |
5 { | 5 { |
6 "url": "file://endure/indexeddb_app.html", | 6 "url": "file://endure/indexeddb_app.html", |
7 "name": "indexeddb_offline", | 7 "name": "indexeddb_offline", |
8 "why": "Simulates user input while offline and sync while online.", | 8 "why": "Simulates user input while offline and sync while online.", |
9 "navigate_steps": [ | 9 "navigate_steps": [ |
10 { "action": "navigate" }, | 10 { "action": "navigate" }, |
11 { "action": "wait", "condition": "element", "text": "initialized" } | 11 { "action": "wait", "condition": "element", "text": "initialized" } |
12 ], | 12 ], |
13 "endure": [ | 13 "endure": [ |
14 { "action": "wait", "condition": "element", "selector": "button[id=\"onl
ine\"]:not(disabled)" }, | 14 { "action": "wait", "condition": "element", "selector": "button[id=\"onl
ine\"]:not(disabled)" }, |
15 { "action": "click_element", "selector": "button[id=\"online\"]:not(disa
bled)" }, | 15 { "action": "javascript_click", "selector": "button[id=\"online\"]:not(d
isabled)" }, |
16 { "action": "wait", "condition": "element", "xpath": "id(\"state\")[text
()=\"online\"]" }, | 16 { "action": "wait", "condition": "element", "xpath": "id(\"state\")[text
()=\"online\"]" }, |
17 { "action": "wait", "seconds": 1 }, | 17 { "action": "wait", "seconds": 1 }, |
18 { "action": "wait", "condition": "element", "selector": "button[id=\"off
line\"]:not(disabled)" }, | 18 { "action": "wait", "condition": "element", "selector": "button[id=\"off
line\"]:not(disabled)" }, |
19 { "action": "click_element", "selector": "button[id=\"offline\"]:not(dis
abled)" }, | 19 { "action": "javascript_click", "selector": "button[id=\"offline\"]:not(
disabled)" }, |
20 { "action": "wait", "condition": "element", "xpath": "id(\"state\")[text
()=\"offline\"]" } | 20 { "action": "wait", "condition": "element", "xpath": "id(\"state\")[text
()=\"offline\"]" } |
21 ] | 21 ] |
22 } | 22 } |
23 ] | 23 ] |
24 } | 24 } |
OLD | NEW |