MCPcopy Index your code
hub / github.com/appium/python-client / get_status

Method get_status

appium/webdriver/webdriver.py:365–376  ·  view source on GitHub ↗

Get the Appium server status Usage: driver.get_status() Returns: dict: The status information

(self)

Source from the content-addressed store, hash-verified

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.

Callers 1

test_statusMethod · 0.80

Calls 1

executeMethod · 0.45

Tested by 1

test_statusMethod · 0.64