Index: chrome/test/chromedriver/client/command_executor.py |
diff --git a/chrome/test/chromedriver/client/command_executor.py b/chrome/test/chromedriver/client/command_executor.py |
index 4d3c31458ffbec6bf3f44648528d1ac9774ee90d..a42af82af2c7c372d41303f62b4d93d07cc67764 100644 |
--- a/chrome/test/chromedriver/client/command_executor.py |
+++ b/chrome/test/chromedriver/client/command_executor.py |
@@ -146,6 +146,10 @@ class Command(object): |
SET_AUTO_REPORTING = (_Method.POST, '/session/:sessionId/autoreport') |
GET_SESSION_LOGS = (_Method.POST, '/logs') |
STATUS = (_Method.GET, '/status') |
+ GET_EMULATED_NETWORK_CONDITIONS = ( |
samuong
2016/06/28 23:23:40
nit: should probably call this "GET_NETWORK_CONNEC
roisinmcl
2016/06/29 17:55:13
This was mostly a placeholder for Eva's code, so I
|
+ _Method.GET, '/session/:sessionId/network_connection') |
+ SET_NETWORK_CONNECTION = ( |
+ _Method.POST, '/session/:sessionId/network_connection') |
# Custom Chrome commands. |
IS_LOADING = (_Method.GET, '/session/:sessionId/is_loading') |