Dilip
Dilip

Reputation: 202

How to automate by Firefox browser for functionality testing?

I have to automate the Firefox application to do Functional testing,

kindly help me which testing tool I can use.

thanks

Upvotes: 4

Views: 442

Answers (4)

neves
neves

Reputation: 39443

The most important piece of selenium that you can use is Seleinum IDE, user friendly interface to record and play your tests.

Useful for automated tests of web.

Upvotes: 1

edA-qa mort-ora-y
edA-qa mort-ora-y

Reputation: 31951

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

Upvotes: 0

robjmills
robjmills

Reputation: 18598

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 https://stackoverflow.com/questions/606550/watir-vs-selenium-vs-sahi

Upvotes: 1

Robert Harvey
Robert Harvey

Reputation: 180908

Selenium.

http://seleniumhq.org/

Upvotes: 9

Related Questions