Get the Appium server status Usage: driver.get_status() Returns: dict: The status information
(self)
| 363 | self.caps = get_response_value('capabilities') or {} |
| 364 | |
| 365 | def get_status(self) -> Dict: |
| 366 | """ |
| 367 | Get the Appium server status |
| 368 | |
| 369 | Usage: |
| 370 | driver.get_status() |
| 371 | |
| 372 | Returns: |
| 373 | dict: The status information |
| 374 | |
| 375 | """ |
| 376 | return self.execute(Command.GET_STATUS)['value'] |
| 377 | |
| 378 | def create_web_element(self, element_id: Union[int, str]) -> MobileWebElement: |
| 379 | """Creates a web element with the specified element_id. |