Hi can someone help me check why I'm getting different CSV file content upon downloading thru Jmeter? Your response is highly appreciated. Thank you so much in advance.
Sample Download thru Manual click
File Format & Size
Fiddler Request used:
Jmeter Downloaded File
Save Responses to a file:
Jmeter downloaded content:
I noticed the file size upon downloading of Jmeter is different compare to manual download
Do you know what happens on the server side when you "manually downloading" the file? If you don't please ask your application developers as we know nothing about the application you're testing.
Also don't post code as images
The last image you shared looks like Base64 encoded content of the CSV file, in order to get the same result as for the "manual" download you need to decode the response using either __base64Decode() function (this guy can be installed as a part of Custom JMeter Functions bundle using JMeter Plugins Manager) or you can use JSR223 PostProcessor to decode the response from Base64 and save it to the hard drive, the relevant code would be something like: