| Index: chrome/test/chromedriver/client/chromedriver.py
|
| diff --git a/chrome/test/chromedriver/client/chromedriver.py b/chrome/test/chromedriver/client/chromedriver.py
|
| index 4e16f0f9d9ea9c6fad9512d77cc8fe143a1547ab..ffa78fa5cf610bf9655eb31cadd4f78dcd2bfe45 100644
|
| --- a/chrome/test/chromedriver/client/chromedriver.py
|
| +++ b/chrome/test/chromedriver/client/chromedriver.py
|
| @@ -409,3 +409,7 @@ class ChromeDriver(object):
|
|
|
| def DeleteNetworkConditions(self):
|
| self.ExecuteCommand(Command.DELETE_NETWORK_CONDITIONS)
|
| +
|
| + def SetNetworkConnection(self, connection_type):
|
| + params = {'parameters': {'type': connection_type}}
|
| + self.ExecuteCommand(Command.SET_NETWORK_CONNECTION, params)
|
|
|