Hello,
Please I should start to do performance tests for a native mobile application, and I see that Gatling is a good tool to do the performance tests. how can I use it for my native mobile application, thanks a lot
Performance testing is actually a wide range. It includes:
- load testing (stress testing is just one kind of load testing) = test server API or server-side rendered content
- web performance testing = how fast the browser is to download the resources from the server to paint the rendering, if it leaks memory
- native app performance testing = similar to 2.: how much CPU is used to paint the interface, if it drains the battery, if it leaks memory
Gatling is only suited for #1. You would focus on the server APIs that would be called by your native app. You wonβt emulate nor automate your native app.
1 Like
Thank you so much for your clarification @slandelle ^^ , There is another way to do the point 3 ? testing only API for native app is suffisiant ?
No, these tests are complementary. For example, LeakCanary on Android can help figuring our memory leaks.