<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7609187755148902233</id><updated>2011-11-27T16:05:53.208-08:00</updated><category term='Web Performance Testing'/><title type='text'>The information source for SQA</title><subtitle type='html'>See my web-site for some static information I updated some time ago at: http://www.SQAsource.com</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sqasource.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://sqasource.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Information source for SQA</name><uri>http://www.blogger.com/profile/03898161850800058379</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7609187755148902233.post-2634183981523327619</id><published>2009-10-01T12:32:00.001-07:00</published><updated>2009-10-01T12:39:11.395-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web Performance Testing'/><title type='text'>New way of conducting web performance testing</title><content type='html'>It has been long time that performance testing meaning commercial tools like LoadRunner from Mercury, later added Avalanche from Spirent and IxLoad from Ixia.&lt;br /&gt;&lt;br /&gt;However, none of the traditional tools can handle:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Complicated web transactions&lt;/li&gt;&lt;li&gt;Different OS/Browser behaviors&lt;/li&gt;&lt;/ul&gt;Now, with some recent (cloud-computing based) developments; there are few alternatives that one can leverage other people's infrastructure and conduct vast load of testing (while still pricy):&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Gomez.com&lt;/li&gt;&lt;li&gt;BrowserMob&lt;/li&gt;&lt;li&gt;utest.com&lt;/li&gt;&lt;/ul&gt;These tools/sites are also providing other tests as monitoring/alert services that could also be add-on values for live traffic. However, I like the easy way to add thousands of real web-traffic.&lt;br /&gt;&lt;br /&gt;Also, as cloud-computing is getting more popular and one can hope the price will drop down more soon!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7609187755148902233-2634183981523327619?l=sqasource.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sqasource.blogspot.com/feeds/2634183981523327619/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sqasource.blogspot.com/2009/10/new-way-of-conducting-web-performance.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/2634183981523327619'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/2634183981523327619'/><link rel='alternate' type='text/html' href='http://sqasource.blogspot.com/2009/10/new-way-of-conducting-web-performance.html' title='New way of conducting web performance testing'/><author><name>Information source for SQA</name><uri>http://www.blogger.com/profile/03898161850800058379</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7609187755148902233.post-7422800895417417180</id><published>2009-03-05T21:10:00.001-08:00</published><updated>2009-03-05T21:27:28.778-08:00</updated><title type='text'>My Python Based Test Framework (PAT) (1)</title><content type='html'>After used and reviewed so many test-frameworks; now I have been working on developing my own, again. More precisely, it will be just another re-factor work and who knows how much will be left out not touched.&lt;br /&gt;&lt;br /&gt;Well, before really dig into the details of the new framework, reviewing the ones I have used before.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;a href="http://staf.sourceforge.net/"&gt;STAF&lt;/a&gt;. It's really a nice and cool setup; except setting it up maybe a pain; especially that my typical test environment has different types of machines need be managed and get all machines running STAF is really a challenging work. Last time I have seen it all working successfully was actually on a small-scale setup with relative coherent machines.&lt;/li&gt;&lt;li&gt;Shell scripts. In one of my previous projects (jobs), we got a full set of shell scripts working very nicely that monitor different set of machines (DUTs ,controlling machines, and tester-machines). They are mostly Linux-ish machines; and Tcl/Expect was used to manage the login process. There are also lot of text-processing the extract the logs (test-data, logs frm DUT etc), MIBs etc to correlate the data and finding isues. The correlation part is so wonderful that it had given huge visibility since all power-point presentation were backed up by serious of data; which were extracted out from pages and pages of original logs etc.&lt;/li&gt;&lt;li&gt;Perl/Python scripts. In my last job, there was some Perl scripts that drive serious of data packets and then extract information out from the logs (yes, logs again) and captured packets to determine efficiency and effectiveness of (virus!) detection. It's an interesting setup of scripts and it was kind of tedious and I converted portion of code into Python to make the lot faster. Gosh, the Perl scirpts were so slow to send out packets but it's quite good in parsing results&lt;/li&gt;&lt;li&gt;Now, here, in my current place, we had a serious of shell-scripts (before me) done by group of genious software engineers (but without much sense of testing). Fr months, I tried to throw the wholething awaya; but I had to live with it since it does take times to develop a new onw.&lt;/li&gt;&lt;/ol&gt;And so, the journey started... my new test-framework based on Python; I called it PAT (Python Automation Test).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7609187755148902233-7422800895417417180?l=sqasource.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sqasource.blogspot.com/feeds/7422800895417417180/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sqasource.blogspot.com/2009/03/basis-element-of-test-framework-1.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/7422800895417417180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/7422800895417417180'/><link rel='alternate' type='text/html' href='http://sqasource.blogspot.com/2009/03/basis-element-of-test-framework-1.html' title='My Python Based Test Framework (PAT) (1)'/><author><name>Information source for SQA</name><uri>http://www.blogger.com/profile/03898161850800058379</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7609187755148902233.post-8671924730991583977</id><published>2008-12-28T19:55:00.000-08:00</published><updated>2008-12-28T19:57:49.861-08:00</updated><title type='text'>Open Source Automated Test Tools Written in Java</title><content type='html'>Well, I'm not a Java fun; though I have seen it growing from its inception.&lt;br /&gt;However, I found this blog quite interesting for the &lt;a href="http://www.manageability.org/blog/stuff/open-source-automated-test-tools-written-in-java"&gt;testing tools based on Java&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7609187755148902233-8671924730991583977?l=sqasource.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sqasource.blogspot.com/feeds/8671924730991583977/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sqasource.blogspot.com/2008/12/open-source-automated-test-tools.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/8671924730991583977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/8671924730991583977'/><link rel='alternate' type='text/html' href='http://sqasource.blogspot.com/2008/12/open-source-automated-test-tools.html' title='Open Source Automated Test Tools Written in Java'/><author><name>Information source for SQA</name><uri>http://www.blogger.com/profile/03898161850800058379</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7609187755148902233.post-7085640799885980053</id><published>2008-12-23T22:54:00.000-08:00</published><updated>2008-12-23T23:02:04.314-08:00</updated><title type='text'>Make extra cash from software testing...</title><content type='html'>I recently cross this site and thought it is interesting: &lt;a href="http://www.utest.com/"&gt;http://www.utest.com/&lt;/a&gt;. I dont know how effective they are in qualifying customers and testers; and also I don't know how the compensation is determined, but it sounds a possible way of leveraging the skills in software testing for some extra cash. It may not be great $$, but I guess anything may be helpful if one doesn't have any income (which is the case for lot of people in this economic environment).&lt;br /&gt;&lt;br /&gt;In addition, I feel strike is that I actually thought about the similar business model, inspired by the &lt;a href="http://www.rentacoder.com/"&gt;Rent-A-Coder&lt;/a&gt;. Well, I never had time/effort/resources to get it implemented; though I could do it better?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7609187755148902233-7085640799885980053?l=sqasource.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sqasource.blogspot.com/feeds/7085640799885980053/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sqasource.blogspot.com/2008/12/make-extra-cash-from-software-testing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/7085640799885980053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/7085640799885980053'/><link rel='alternate' type='text/html' href='http://sqasource.blogspot.com/2008/12/make-extra-cash-from-software-testing.html' title='Make extra cash from software testing...'/><author><name>Information source for SQA</name><uri>http://www.blogger.com/profile/03898161850800058379</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7609187755148902233.post-8863322332807255691</id><published>2008-12-23T22:37:00.000-08:00</published><updated>2008-12-23T22:43:27.962-08:00</updated><title type='text'>Selenium vs. Watir</title><content type='html'>One of the main testing activities I have been involved (or studied) in the last couple years is more or less related to testing web-based applications (either pure e-commerce, web-app, web-security or even appliance). For all of these related technologies, testing web-page is a norm and there are few methods to get the job done: &lt;ul&gt;&lt;li&gt;&lt;u&gt;&lt;strong&gt;Manual testing. &lt;/strong&gt;&lt;/u&gt;The dumb way but still sometime the most productive way for the initial exploratary testing. I don't see any way to totally avoid it!&lt;/li&gt;&lt;li&gt;&lt;u&gt;&lt;strong&gt;Simple scripting&lt;/strong&gt;&lt;/u&gt;…like &lt;em&gt;wget&lt;/em&gt;. Sometimes, if one just needs check if a site is up and one or couple pages are there, using &lt;em&gt;wget &lt;/em&gt;combined with some simple shell scriptsis probably one of the best choices.&lt;/li&gt;&lt;li&gt;&lt;u&gt;&lt;strong&gt;Regression Testing &lt;/strong&gt;&lt;/u&gt;(or even functional testing); here we need some heavy-duty scripting tools. I did try the most expensive tools; like SilkTest, WinRunner, and also the so-called QTP (now part of HP); but I have never liked it: way too expensive and dumb (prietary scripting).&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Well, the alternatives are available; and I believe they are quite useful and, even (IMO) better than the commercial  QTP or like.&lt;/p&gt; &lt;p&gt;Our of all of the alternatives, two of them stand out: &lt;a href="http://seleniumhq.org/" title="Selenium Homepage"&gt;Selenium &lt;/a&gt;and &lt;a href="http://wtr.rubyforge.org/" title="WATIR homepage"&gt;Watir&lt;/a&gt;. There are lot of discussions and comparison between these two and here are my reasons of choosing Selenium over WAITR:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Linux support: Selenium is much better than Watir; Watir was rooted for MS-IE-Ruby platform&lt;/li&gt;&lt;li&gt;Python support: Selenium had Python support at beginning and Watir was a pure Ruby toy. Oh, why Python over Ruby? &lt;strong&gt;Speed! &lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Doesn't Watir have anything better? Yes, Watir is better in supporting DOM objects, purely IMO. In addition, if the AUT is written in Ruby, there should be some build-in benefits,…, but dont quote me on it; I didn't go that far on this approach&lt;/li&gt;&lt;li&gt;At last, if one has exposed to any unit-testing framewrok, like Xunit, Junit, and Selenium could integrate with the Python unit test: &lt;a style="font-weight: bold;" href="http://www.diveintopython.org/unit_testing/index.html"&gt;Pyunit&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7609187755148902233-8863322332807255691?l=sqasource.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sqasource.blogspot.com/feeds/8863322332807255691/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://sqasource.blogspot.com/2008/12/selenium-vs-watir.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/8863322332807255691'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7609187755148902233/posts/default/8863322332807255691'/><link rel='alternate' type='text/html' href='http://sqasource.blogspot.com/2008/12/selenium-vs-watir.html' title='Selenium vs. Watir'/><author><name>Information source for SQA</name><uri>http://www.blogger.com/profile/03898161850800058379</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
