views:

109

answers:

4

Hi all, i have to automate the firefox application to do a functionality testing,

kindly help me which testing tool i can use

thanks

+9  A: 

Selenium.

http://seleniumhq.org/

Robert Harvey
+1 for fastest gun in the west :)
DVK
+1  A: 

Would probably go for selenium but worth noting there are alternatives with cross browser compatibility: Watir and Sahi

Their relative advantages and disadvantages compared to Selenium are discussed here http://stackoverflow.com/questions/606550/watir-vs-selenium-vs-sahi

seengee
+1  A: 

The most important piece of selenium that you'll use is seleinum ide, user friendly interface to record and play your tests.

Useful for all kinds of automation.

neves
A: 

Consider TestPlan which has Selenium available as one of its backends but abstracts way all the nasty bits and generally makes it easier to write tests quickly.

Consider a quick test to submit a form pressing the Save button and setting a few parameters:

SubmitForm with
  %Submit% value:Save
    %Params% with
      %name% Hammy First
      %country% CA
   end
end
edA-qa mort-ora-y