Web Application Testing for .Net (WatiN Test Recorder)

后端 未结 6 728
闹比i
闹比i 2021-01-05 09:36

I\'ve been using WatiN as a testing tool for my current project. Besides the minor bugs with the Test Recorder, I\'ve been able to use it and automate a lot of my tests in c

6条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-05 10:04

    The best Open Source automation tool I have used are Selenium IDE and Selenium Remote Control. You can then run the scripts on IE, Firefox in both Mac and Windows.

    If you prefer record-play, then download the Firefox add-on Selenium IDE and then record your scripts and run them. You can very easily look at the scripts and figure out how to make minor edits.

    If you want more power and flexibility of a full programming language, then consider Selenium Remote Control where I use Java and JUnit to drive the automation scripts. An easy way to started using RC is to use IDE to record your scripts, save them as RC scripts and use JUnit framework to drive your test suite.

    For more information, check out:

    http://selenium-ide.openqa.org/ http://selenium-rc.openqa.org/

提交回复
热议问题