English 中文(简体)
Mercury Test Director vs. Selenium: Compare and Contrast
原标题:

The Question: What are the benefits and disadvantages of TestDirector over Selenium

Some background: I have a little experience with Selenium, but I m told my company owns an enterprise license of TestDirector (and that I may be forced to use it). Thus, apparently cost is not an issue. Given that, I m wondering what I give up from Selenium that isn t in TestDirector, and also what s in TestDirector that isn t in Selenium.

Thanks for thoughts.

最佳回答

Test Director is supposed to be a an encompassing application that helps with all aspects of testing from test case management to down to running your automated tests. It then reports on all of this.

If you have a lot of money then it may be the right option for you.

Selenium is a UI test automation framework that is people use instead of HP Quick Test Pro (QTP). QTP, like Test Director, costs a small fortune to setup and get it going. Selenium is very good at testing at AJAX applications where QTP can cope with it. Selenium runs in the browser so doesnt rely on UI maps and doesn t need to have a object store for the page. The Page Object Pattern for UI testing can handle this in a more intuitive manner. With Selenium 2 (now in alpha) there is going to be better support for more native actions like key strokes which QTP is slightly better but once it has fully released then I feel Selenium 2 will be the best Web Test Automation framework out there. QTP will still be able to do desktop applications but with more and more applications going into Browsers it will have less and less marketshare of all applications out there.

问题回答

暂无回答




相关问题
Javascript communication with Selenium (RC)

My Application has a lot of calculation being done in JavaScript according to how and when the user acts on the application. The project prints out valuable information (through console calls) as to ...

Running automated Web browser tests under Hudson

I m running Hudson for my automated builds and love it. I d now like to create automated Web browser tests using either WaTiN (preferred) or Selenium. As my Hudson runs as a Windows service (under ...

Using a Java library with Scala reserved words

I m using an external library written in Java (Selenium). One of the function calls has the signature type(String, String), and I keep getting compiler errors when trying to call it from Scala, that ...

Heightened privilege selenium browsers on Windows 7 (x64)

I make use of *firefox and *iexplore etc. within my selenium tests to get around the issue of self-signed SSL certificates on my local machine. Unfortunately, now that I ve moved from XP over to 7, ...

Selenium not working with Firefox 3.x on linux

I am using selenium-server , selenium rc for UI testing in my application . My dev box is Windows with FireFox 3.5 and every thing is running fine and cool. But when i try to run selenium tests on my ...

Selenium IDE: Incrementing values by 1 and 71

Currently I m incrementing a value called wert by 1 with the following code: getEval storedVars[ wert ]=${wert}+1; The value wert is something like 80401299. I want to add 1 to the value, if it ...

热门标签