Skip to main content

App frontend performance testing via App Automate

Important: This feature is available only under Device Cloud Pro, Device Cloud Pro + Visual Cloud, and Enterprise Pro plans. For more details check out our pricing page.

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 All performance metrics

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: Versions 10.0 and above but below 14.0
  • iOS: Versions 14.0 and above but below 17.0

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






Thank you for your valuable feedback

Is this page helping you?

Yes
No

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!

Talk to an Expert
Download Copy