(self)
| 63 | return self.mark_extension_absence(ext_name).execute(Command.GET_DEVICE_TIME_POST, {'format': format})['value'] |
| 64 | |
| 65 | def _add_commands(self) -> None: |
| 66 | self.command_executor.add_command( |
| 67 | Command.GET_DEVICE_TIME_GET, |
| 68 | 'GET', |
| 69 | '/session/$sessionId/appium/device/system_time', |
| 70 | ) |
| 71 | self.command_executor.add_command( |
| 72 | Command.GET_DEVICE_TIME_POST, |
| 73 | 'POST', |
| 74 | '/session/$sessionId/appium/device/system_time', |
| 75 | ) |
nothing calls this directly
no test coverage detected