App frontend performance testing via App Automate
Set the capability
Set the appProfiling
capability to true
in your Appium scripts to capture detailed app performance metrics. The capability is available on both Android and iOS.
Capability | Description | Values |
---|---|---|
appProfiling |
Enable detailed app performance profiling. | true, false Default: false |
Example:
DesiredCapabilities capabilities = new DesiredCapabilities();
HashMap<String, Object> browserstackOptions = new HashMap<String, Object>();
browserstackOptions.put("appProfiling", "true");
var capabilities = {
'bstack:options' : {
"appProfiling" : "true",
},
}
desired_cap = {
'bstack:options' : {
"appProfiling" : "true",
},
}
capabilities = {
'bstack:options' => {
"appProfiling" => "true",
},
}
AppiumOptions capabilities = new AppiumOptions();
Dictionary<string, object> browserstackOptions = new Dictionary<string, object>();
browserstackOptions.Add("appProfiling", "true");
Access detailed performance report via Dashboard or REST API
App Automate Dashboard
App Profiling V2 REST API
Refer to App Profiling V2 REST API docs.
Supported OS versions
Currently, this feature is supported on the following OS versions:
- Android: version 10.0 and above
- iOS: version 14.0 and above
Need some help?
If you need any help with this feature, get in touch with us.
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
Thank you for your valuable feedback!