OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import command_executor | 5 import command_executor |
6 from command_executor import Command | 6 from command_executor import Command |
7 from webelement import WebElement | 7 from webelement import WebElement |
8 | 8 |
9 | 9 |
10 class ChromeDriverException(Exception): | 10 class ChromeDriverException(Exception): |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 Command.SET_NETWORK_CONDITIONS, {'network_name': network_name}) | 377 Command.SET_NETWORK_CONDITIONS, {'network_name': network_name}) |
378 | 378 |
379 def GetNetworkConditions(self): | 379 def GetNetworkConditions(self): |
380 conditions = self.ExecuteCommand(Command.GET_NETWORK_CONDITIONS) | 380 conditions = self.ExecuteCommand(Command.GET_NETWORK_CONDITIONS) |
381 return { | 381 return { |
382 'latency': conditions['latency'], | 382 'latency': conditions['latency'], |
383 'download_throughput': conditions['download_throughput'], | 383 'download_throughput': conditions['download_throughput'], |
384 'upload_throughput': conditions['upload_throughput'], | 384 'upload_throughput': conditions['upload_throughput'], |
385 'offline': conditions['offline'] | 385 'offline': conditions['offline'] |
386 } | 386 } |
| 387 |
| 388 def DeleteNetworkConditions(self): |
| 389 self.ExecuteCommand(Command.DELETE_NETWORK_CONDITIONS) |
OLD | NEW |