23

Does anyone know of a good tool to test load and stress on webservices? I've been looking at Watir and Selenium, but there more web page centered.

Linger
  • 14,942
  • 23
  • 52
  • 79
Alonso
  • 1,069
  • 5
  • 12
  • 22

6 Answers6

24

Here are some common load testing tools:

halfpastfour.am
  • 5,764
  • 3
  • 44
  • 61
Ryan Doherty
  • 38,580
  • 4
  • 56
  • 63
9

You should definitly take a look a SoapUI.

  • 1
    Just in case someone may find this question again. SoapUI is pretty nice for load testing web service interfaces. Helped me a lot! – Nils Schmidt Nov 25 '10 at 09:36
  • 2
    actually, SoapUI is pretty ... limited if it comes to loadtesting - its much more suited towards functional testing, interface testing and the likes. If you want to do LOAD tests you will need LoadUI. Just saying. – specializt Jan 29 '16 at 13:34
3

I actually like Pylot

It's free, open source, and I've been able to use it for a number of projects.

AaronS
  • 7,649
  • 5
  • 30
  • 56
2

I've used openSTA.

This uses a relatively simple script language.

You can easily test web services and write your own scripts.

It allows you to put scripts together in a test in any way you want and configure the number of iterations, the number of users in each iteration, the ramp up time to introduce each new user and the delay between each iteration. Tests can also be scheduled in the future.

It's open source and free.

It produces a number of reports which can be saved to a spreadsheet. We then use a pivot table to easily analyse and graph the results.

rbrayb
  • 46,440
  • 34
  • 114
  • 174
1

I don't think Selenium and Watir were actually designed for load testing. Maybe you should be looking at things like httperf and ab.

Thiago Arrais
  • 33,360
  • 7
  • 30
  • 34
0

I've used WebLOAD before for webservice testing

Yasei No Umi
  • 1,574
  • 9
  • 23