(self)
| 95 | return self.get_clipboard(ClipboardContentType.PLAINTEXT).decode('UTF-8') |
| 96 | |
| 97 | def _add_commands(self) -> None: |
| 98 | self.command_executor.add_command( |
| 99 | Command.SET_CLIPBOARD, |
| 100 | 'POST', |
| 101 | '/session/$sessionId/appium/device/set_clipboard', |
| 102 | ) |
| 103 | self.command_executor.add_command( |
| 104 | Command.GET_CLIPBOARD, |
| 105 | 'POST', |
| 106 | '/session/$sessionId/appium/device/get_clipboard', |
| 107 | ) |
nothing calls this directly
no test coverage detected