Website load testing - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T04:46:49Zhttp://stackoverflow.com/feeds/question/54459http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/54459/website-load-testing8Website load testingEli Courtwright2008-09-10T15:42:43Z2008-10-28T01:30:07Z
<p>My team has just developed a website for a client and wants to test that it'll work under the expected usage for 50 simultaneous users. So the plan is to write a test program that will act as 50 simultaneous users. We need this test program to be able to:</p>
<ol>
<li><p>Be logged in with a cookie. Our session ids are not embedded in our URLs and we don't want them to be.</p></li>
<li><p>Submit a few forms rather than just clicking on links.</p></li>
<li><p>Measure the response time of every page and keep statistics on every page; average, best, and worst load times would be nice.</p></li>
<li><p>Wait a realistic amount of time between actions.</p></li>
</ol>
<p>I don't need to worry about these clients doing anything with Javascript; our site only uses a little Javascript and the clients should be able to do almost everything without it.</p>
<p>So before we try to build our own software for doing this, is there something out there which would meet some or all of these needs? A Python solution would be ideal, but we'll take anything, so long as it's free. (We have a budget for programmer time but no budget for buying software, so it wouldn't matter how money we'd save to buy a COTS product.)</p>
<p>EDIT: I've gotten several great suggestions below. Watir looks like the easiest and most elegant solution. Unfortunately, all of the solutions seem to require that a client hits a pre-specified series of webpages in a specific order. What I'd like is something that clicks on random links and submits random forms to simulate a bunch of users clicking on a bunch of links. Nothing so far seems to make this easy, although Watir comes the closest.</p>
http://stackoverflow.com/questions/54459/website-load-testing/54466#544661Answer by Mike for Website load testingMike2008-09-10T15:44:56Z2008-09-10T15:44:56Z<p>the Microsoft Web Application Stress Tool should cover some of your needs.</p>
http://stackoverflow.com/questions/54459/website-load-testing/54477#544772Answer by brettbaggott for Website load testingbrettbaggott2008-09-10T15:47:12Z2008-09-10T15:52:32Z<p><a href="http://wtr.rubyforge.org/" rel="nofollow">http://wtr.rubyforge.org/</a> I think that's all you need to know. I Googled "watir phython" and got some interesting hits but you could do that...</p>
<p>I would add that I'm a .NET developer and had <strong>very</strong> limited exposure to Ruby before trying Watir (decided not to use the crutch of Watin, the .NET port first) and I picked it up enough to do my testing. I have since started using Watin for the integration it gives me.</p>
<p>I've used Microsoft's free WAST in the past and it is probably good enough for basic testing even if it is Circa 2002.</p>
http://stackoverflow.com/questions/54459/website-load-testing/54492#544922Answer by George Mauer for Website load testingGeorge Mauer2008-09-10T15:51:53Z2008-09-10T15:51:53Z<p>Take a look at <a href="http://selenium.openqa.org/" rel="nofollow">selenium</a> I think that it might be able to somehow act as multiple users at once.</p>
http://stackoverflow.com/questions/54459/website-load-testing/54497#544971Answer by changelog for Website load testingchangelog2008-09-10T15:53:30Z2008-09-10T15:53:30Z<p>Also, wget allows you to pass cookies in.</p>
http://stackoverflow.com/questions/54459/website-load-testing/91501#915017Answer by Buzz for Website load testingBuzz2008-09-18T10:32:59Z2008-09-18T10:32:59Z<p>I've found Apache Jmeter (<a href="http://jakarta.apache.org/jmeter/" rel="nofollow">http://jakarta.apache.org/jmeter/</a>) to be an <em>awesome</em> tool for this. It's easy to get up and running with, and helped me narrow in on exactly the functions I wanted to test. </p>
http://stackoverflow.com/questions/54459/website-load-testing/102467#1024671Answer by Kristian for Website load testingKristian2008-09-19T14:51:37Z2008-10-18T14:20:51Z<p>Have a look at <a href="http://www.minq.se/products/pureload/" rel="nofollow">PureLoad</a></p>
<p>EDIT: PureLoad is not free software. Not that there's anything wrong with that, but it may remove it from consideration for many teams.</p>
http://stackoverflow.com/questions/54459/website-load-testing/214864#2148642Answer by Željko Filipin for Website load testingŽeljko Filipin2008-10-18T10:29:05Z2008-10-18T10:37:31Z<p>Since Watir is "just" a Ruby (nice programming language) library, you can create tests that will randomly click links and submit random forms.</p>
<p>Take a look at this page for example:</p>
<p><a href="http://wiki.openqa.org/display/WTR/Dynamic+Method+Creation" rel="nofollow">http://wiki.openqa.org/display/WTR/Dynamic+Method+Creation</a></p>
<p>Also, if you decide to use Watir, you can get help at <a href="http://groups.google.com/group/watir-general" rel="nofollow">http://groups.google.com/group/watir-general</a></p>
<p>Just to be open about it: I am member of Watir core team.</p>
http://stackoverflow.com/questions/54459/website-load-testing/214880#2148801Answer by ayaz for Website load testingayaz2008-10-18T10:46:20Z2008-10-18T10:46:20Z<p>Someone has already mentioned <a href="http://jakarta.apache.org/jmeter/" rel="nofollow">Apache JMeter</a>, which I would recommend highly. Having said that, I would also recommend <a href="http://httpd.apache.org/docs/2.0/programs/ab.html" rel="nofollow">ab - Apache HTTP server benchmarking tool</a>.</p>
http://stackoverflow.com/questions/54459/website-load-testing/214883#2148831Answer by tloach for Website load testingtloach2008-10-18T10:48:48Z2008-10-18T10:48:48Z<p>We use openSTA for that sort of testing.</p>
http://stackoverflow.com/questions/54459/website-load-testing/241973#2419731Answer by nzpcmad for Website load testingnzpcmad2008-10-28T01:30:07Z2008-10-28T01:30:07Z<p>Agree with <a href="http://www.opensta.org/" rel="nofollow" title="openSTA">openSTA</a> suggestion.</p>
<p>This allows a session with a web site to be recorded and then played back via a relatively simple script language.</p>
<p>You can easily test web services and write your own scripts.</p>
<p>This script could use a "random" function to choose between a number of URL's and then send the page to that URL.</p>
<p>It's open source and free.</p>