Get Performance Data
Returns the information of the system state which is supported to read as like cpu, memory, network traffic, and battery
Example Usage
List<List<Object>> performanceData = driver.getPerformanceData("my.app.package", "cpuinfo", 5);
# Not supported
// Not supported
// Not supported
@driver.get_performance_data()
// TODO C# sample
// TODO PHP sample
Support
Appium Server
| Platform | Driver | Platform Versions | Appium Version | Driver Version |
|---|---|---|---|---|
| iOS | XCUITest | None | None | None |
| UIAutomation | None | None | None | |
| Android | UiAutomator2 | ?+ | 1.6.0+ | All |
| UiAutomator | 4.2+ | All | All | |
| Mac | Mac | None | None | None |
| Windows | Windows | None | None | None |
Appium Clients
| Language | Support | Documentation |
|---|---|---|
| Java | All | appium.github.io |
| Python | None | |
| Javascript (WebdriverIO) | All | |
| Javascript (WD) | All | |
| Ruby | All | github.com |
| PHP | None | github.com |
| C# | None | github.com |
HTTP API Specifications
Endpoint
POST /session/:session_id/appium/getPerformanceData
URL Parameters
| name | description |
|---|---|
| session_id | ID of the session to route the command to |
JSON Parameters
| name | type | description |
|---|---|---|
| package_name | string |
The package name of the application |
| data_type | string |
The type of system state which wants to read. It should be one of the supported performance data types. |
| data_read_timeout | number |
The number of attempts to read (optional) |
Response
The information type of the system state which is supported to read as like cpu, memory, network traffic, and battery (array<string>)