0

I have a requirement for the performance of webpage, example : I have a logging page need to run 10 concurrent execution with different users to test the performance of that page.

I have gone through ruby-jmeter gem but It opened only one browser, but in jmeter log it is showing more than 10 sessions.

Can anyone help on this one

Thank you

RK . N
  • 308
  • 1
  • 2
  • 9
  • What are you trying to test with 10 different browser instances that running 10 concurrent sessions doesn't accomplish? Unless you're doing automated UI testing, in which case jmeter isn't what you'd use, what you're doing should be what you need. – bynary Nov 29 '18 at 18:22
  • example: i have a login page, I would like to test this page with 10 concurrent users in 10 IE instances at a time, is it possible to do with ruby-jmeter and selenium – RK . N Nov 29 '18 at 18:33
  • I have not followed these steps to know if they actually work, but this should get you started: https://www.swtestacademy.com/performance-testing-jmeter-selenium-grid/ – bynary Nov 29 '18 at 18:38

1 Answers1

0

To run multiple sessions simultaneously you can use the parallel tests gem: https://github.com/grosser/parallel_tests/

Standard disclaimer: there are a lot of variables in evaluating performance and it is extremely difficult to control those variables sufficiently to get useful information on performance using Selenium or Watir.

titusfortner
  • 4,099
  • 2
  • 15
  • 29