Question related to jmeter testing with multiple pages/buttons
Sandeep Kumar B
Ranch Hand
Joined: Jul 10, 2011
Posts: 40
posted
0
Hi
I am testing a question/answer based test application
I coded using selenium/web driver the automation test to start the test and only go through all the questions by clicking the answer button(radio buttons) and clicking next which shows next question and its all working fine
My question is how can I use jmeter to do the same simulating multiple users?
The issue is its not one page, but its a series of operation...Register on the website, click Submit...then keep clicking answers and click next until the test is over
Is this doable in jmeter? Any tutorial
Sandeep Kumar B wrote:The issue is its not one page, but its a series of operation...Register on the website, click Submit...then keep clicking answers and click next until the test is over
Is this doable in jmeter? Any tutorial
jMeter is for black box testing mostly done against web services where you give some input and expect some output.
What you're trying to achieve is more UI component testing which is difficult and not suited for jMeter kind of testing.
If you're really doing an performance testing (that is what jMeter is used for) I suggest to look out for which services are being used in background for your question/answer app and try to test them thru jmeter for multiple users, that take you at least closer to your goal.