aspose file tools
The moose likes Testing and the fly likes Question related to jmeter testing with multiple pages/buttons Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » Testing
Reply Bookmark "Question related to jmeter testing with multiple pages/buttons" Watch "Question related to jmeter testing with multiple pages/buttons" New topic
Author

Question related to jmeter testing with multiple pages/buttons

Sandeep Kumar B
Ranch Hand

Joined: Jul 10, 2011
Posts: 40
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
Sagar Rohankar
Ranch Hand

Joined: Feb 19, 2008
Posts: 2896
    
    1

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.


[LEARNING bLOG] | [Freelance Web Designer] | [and "Rohan" is part of my surname]
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Question related to jmeter testing with multiple pages/buttons
 
Similar Threads
Run my test once it works more times it doesn't
Unit and Performance Testing using JMeter
Login Application Configuration on JMeter
Problem in using Regular Expression Extractor
Android testing, what *should* I be testing?