views:

333

answers:

2

The set up for apache-jmeter allows for a URL to be sent to a web-server on multiple threads. I'm interested in first determining if the response codes are 200-500 and then whether the returned content is the expected content. Is this detailed configuration possible?

A: 

I believe so from what it states here

toolkit
+2  A: 

Yes it does. You simply need to add two Response Assertions to your HTTP Sampler.

One which checks the Response Code, and a second which checks the response message.

Whether these passed or failed will then be visible in the Summary Report.

npellow