(self, args)
| 967 | class AndroidPlatform(Platform): # pragma: no cover |
| 968 | |
| 969 | def __init__(self, args): |
| 970 | super(AndroidPlatform, self).__init__(args) |
| 971 | self.driver = android.Driver.instance(args.device) |
| 972 | |
| 973 | def PreExecution(self): |
| 974 | self.driver.set_high_perf_mode() |