4

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

kindly help me which testing tool I can use.

thanks

Ripon Al Wasim
  • 36,924
  • 42
  • 155
  • 176
Dilip
  • 202
  • 6
  • 11

4 Answers4

9

Selenium.

http://seleniumhq.org/

Robert Harvey
  • 178,213
  • 47
  • 333
  • 501
1

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

Community
  • 1
  • 1
robjmills
  • 18,438
  • 15
  • 77
  • 121
1

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.

Ripon Al Wasim
  • 36,924
  • 42
  • 155
  • 176
neves
  • 33,186
  • 27
  • 159
  • 192
  • Selenium IDE is a starting, it's for record and replay. It has some limitations. So Selenium WebDriver is the better to use. – Ripon Al Wasim Feb 05 '20 at 05:35
0

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
  • 30,295
  • 39
  • 137
  • 267