'How to compare load time for a website in different internet speeds ( 3G fast, 3G slow and 4 G) with Jmeter?
I wanted to check the load and response time of a website using Jmeter and compare the results for 3g slow, 3G fast and 4G internet speeds, to see what impact it creates on the laod and response time of the site
Solution 1:[1]
There are special JMeter properties to control the bandwidth:
httpclient.socket.http.cps- Set characters per second to a value greater then zero to emulate slow connections.httpclient.socket.https.cps- Same as before but for https
so if you add the next lines to user.properties file (lives in "bin" folder of your JMeter installation)
httpclient.socket.http.cps=2688000
httpclient.socket.https.cps=2688000
on next JMeter restart the outgoing and incoming traffic speed will be limited to 3G network maximum bandwidth.
More information: How to Simulate Different Network Speeds in Your JMeter Load Test
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Dmitri T |
