Pravesh wrote:
Hi Team, I have few queries in jmeter. 1.When we executed our test in Non gui mode, say for eg:- 1000vu mc1, 1000 vu mc2, 1000vu mc3 for total 3000 users, then the results file which it generates will it be for 1000 user OR 3000? Where will the results be generated? 2.Can we export the postman collection to jmeter? 3.How can we do native app testing in jmeter (ios+android)?
1. The .jtl results file <https://cwiki.apache.org/confluence/display/jmeter/JtlFiles> will contain metrics on all executed Samplers <https://jmeter.apache.org/usermanual/component_reference.html#samplers>. In addition there will be 2 columns showing the concurrency: "grpThreads" showing the number of active threads in the current Thread Group and "allThreads" showing the total number of active threads. What numbers you will see there depends on your ramp-up period and test duration. The location of the file is controlled via -l command-line argument <https://jmeter.apache.org/usermanual/get-started.html#options> 2. Directly no but you can record Postman/Newman collection execution via JMeter's HTTP(S) Test Script Recorder <https://jmeter.apache.org/usermanual/jmeter_proxy_step_by_step.html>if you set Postman to use JMeter as the proxy and import JMeter's certificate into Postman 3. JMeter cannot test "native app" per se but you can mimic the network footprint of the native app so you will be able to simulate hundreds/thousands of concurrent applications communicating with the backend/database. If your native app uses HTTP protocol you can record the requests using the aforementioned HTTP(S) Test Script Recorder. Again you will need to import JMeter's certificate into the mobile device or emulator and for iOS enable full trust for it <https://support.apple.com/en-us/HT204477>and for Android you will need to amend your application's network security config <https://guide.blazemeter.com/hc/en-us/articles/13354685999889-Configure-Android-Devices-for-Proxy-Recording>. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
