Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Telerik Free Testing Framework vs Selenium [closed]

I am choosing one of the following to test with: Telerik Free Testing Framework and Selenium

The web-project, is a site written in C # and JavaScript.

Can you please tell which of the testers to choose and why?
Highlighting the differences of the above tools for testing?

like image 891
SomeName Avatar asked Jul 12 '12 04:07

SomeName


People also ask

Does Telerik Test Studio use Selenium?

Mixing different frameworks into one automated testing solution can lead to powerful results. Test Studio and Selenium are two frameworks that complement each other well.

Is Telerik Test Studio open source?

Test Studio is not based on Selenium or other Open Source frameworks but on proprietary technology—the Telerik Testing Framework. It is a . NET based framework backed by Progress that continuously undergoes updates as to support development of new Test Studio functionality.

Is Telerik Test Studio free?

Test Studio offers a free 30-day full-featured trial with included support. The download of the installation file can be initiated after you create your Telerik account.

What is Telerik Testing Framework?

The Telerik Testing Framework is a free . NET-based system of rules and libraries to create automated tests from scratch. The Telerik Testing Framework is proprietary technology that receives consistent commercial support and regular updates to support the creation of test cases based on the latest industry standards.


2 Answers

Full disclosure: I'm the Evangelist for Telerik's Test Studio and Testing Framework, so I've got some biases here.

WebDriver's awesome. I still do lots of workshops and talks around it. Telerik's Testing Framework (free, with a paid support option) has a great story around cross-browser compatibility, implicit and explicit waits, and a few other areas too. It's also a natural progression from that to the full commercial version of Test Studio -- however, you expressly do NOT have to go to the paid tooling if you don't want to.

Either tool will get the job done. The more important aspects of your long-term success with test automation are how you go about the work. Focus on using the Page Object Pattern well (regardless of which framework you use), and learn how to deal with synchronization around dynamic content (AJAX, e.g.). Get those two concepts nailed and you'll be a lot happier whether you're using WebDriver or Telerik's Testing Framework.

like image 151
Jim Holmes Avatar answered Sep 21 '22 19:09

Jim Holmes


I would go with Selenium. I say this for one main thing: open source.

I cannot begin to explain in words, how annoying it was to be calling something from Selenium and it was doing something I wasn't expecting or I'd pass in a value and it wasn't doing anything. Documentation can be a little patchy, so whats next? Look at the source code.

I've learnt how Selenium works back to front by looking at the source code. With Telerik's, you obviously cannot do this.

With browser support, they are the same.

Both are well written, well maintained, Telerik's has dedicated support whereas with Selenium you are stuck to Google groups, Google and Stackoverflow.

like image 34
Arran Avatar answered Sep 22 '22 19:09

Arran