Reputation:
I'm trying to test a web page.for few request response data is not getting loaded completely, I can see only first few parts of a page. Where as for few request its working fine.Can anyone help me in this?
Upvotes: 0
Views: 1373
Reputation: 1482
If you are viewing in view result tree then you should set
view.results.tree.max_size
in jmeter.properties
by default it is 200KB
# Maximum size of HTML page that can be displayed; default=200 * 1024
# Set to 0 to disable the size check and display the whole response
view.results.tree.max_size=204800 # set a value higher than default 204800
or set it 0 for no check
Upvotes: 3