Get Performance Data
- Example Usage
- Support
- Appium Server
- Appium Clients
- HTTP API Specifications
- Endpoint
- URL Parameters
- JSON Parameters
- Response
Returns the information of the system state which is supported to read as like cpu, memory, network traffic, and battery //回傳系統狀態的資訊,這些狀態被支持作為cpu、記憶體、網路流量和電池等讀取
Example Usage
| Java | List<List> performanceData = driver.getPerformanceData("my.app.package", "cpuinfo", 5); |
| Python | self.driver.get_performance_data('my.app.package', 'cpuinfo', 5) |
| Javascript | // webdriver.io example driver.getPerformanceData( 'my.app.package', 'cpuinfo', 5);// wd example await driver.getPerformanceData( 'my.app.package', 'cpuinfo', 5); |
| Ruby | # ruby_lib example get_performance_data package_name: 'io.appium.android.apis', data_type: 'cpuinfo', data_read_timeout: 10# ruby_lib_core example @driver.get_performance_data package_name: 'io.appium.android.apis', data_type:'cpuinfo', data_read_timeout: 10 |
| C# | // Not supported |
| PHP | // TODO PHP sample |
Support
Appium Server
| Platform | Driver | Platform Versions | Appium Version | Driver Version |
|---|---|---|---|---|
| iOS | XCUITest | None | None | None |
| UIAutomation | None | None | None | |
| Android | Espresso | ?+ | 1.9.0+ | All |
| UiAutomator2 | ?+ | 1.6.0+ | All | |
| UiAutomator | 4.3+ | All | All | |
| Mac | Mac | None | None | None |
| Windows | Windows | None | None | None |
Appium Clients
| Language | Support | Documentation |
|---|---|---|
| Java | All | appium.github.io |
| Python | All | appium.github.io |
| Javascript (WebdriverIO) | All | |
| Javascript (WD) | All | github.com |
| Ruby | All | www.rubydoc.info |
| 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 |
|---|---|---|
| packageName | string | The package name of the application |
| dataType | string | The type of system state which wants to read. It should be one of the supported performance data types |
| dataReadTimeout | 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>) //支持讀取的系統狀態的資訊型別,如cpu、記憶體、網路流量和電池(array)陣列形式的字串
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/278496.html
標籤:其他
