(self)
| 193 | raise TimeoutException("Could not start noVNC server") |
| 194 | |
| 195 | def stop(self) -> None: |
| 196 | if self._check_vnc_running(): |
| 197 | self.__desktop.commands.run("pkill x11vnc") |
| 198 | |
| 199 | if self.__novnc_handle: |
| 200 | self.__novnc_handle.kill() |
| 201 | self.__novnc_handle = None |
| 202 | |
| 203 | |
| 204 | class Sandbox(SandboxBase): |
no test coverage detected