-1

I want to test the iOS or Android Mobile Application's client side performance using Jmeter and Appium. What are the steps to integrate Jmeter with Appium, from where I can take more reference so that I can successfully integrate the Jmeter with Appium and test performance of iOS or Android Mobile Application's client side performance.

I tried to search a lot about this how to integrate Jmeter with Appium to test client side performance of Mobile Application but didn't get more on the same

1 Answers1

1

You don't need JMeter to test client-side performance, one Appium should be sufficient.

However if you use JMeter for normal performance testing and want it to launch your Appium test as well in a separate Thread Group it should be possible.

  1. Download Appium java client library and all its dependencies and copy them to "lib" directory of your JMeter installation
  2. Restart JMeter to pick up the .jars
  3. Add JSR223 Sampler to your test plan and choose Groovy as the language
  4. Put your Appium Java code into JSR223 Sampler
Dmitri T
  • 159,985
  • 5
  • 83
  • 133