Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tellurium vs Selenium : Compare

Tags:

selenium

I am using selenium for sometime and doing good with it. I would like to try Tellurium. Searched and find only few questions about that. I would like to know the following

  1. What is the main advantages of using Tellurium?
  2. How it is different Selenium+Groovy?
like image 202
Rajasankar Avatar asked Jun 07 '10 11:06

Rajasankar


1 Answers

Tellurium is DSL(Domain-specific language) for Selenium. It was made to make Selenium easier to use. If you like Tellurium language better than use that.

in this document you can see how its different http://code.google.com/p/aost/wiki/UserGuide070Introduction?tm=6

If we think Selenium as the "C" language, Tellurium is like the "C++" language, which uses a different testing concept. There are couple advantages to describe the UI elements as a UI module. Tellurium emphasizes the decoupling of UI from test code. The structured test code makes Tellurium easier to maintain and refactor.

like image 141
IAdapter Avatar answered Oct 14 '22 03:10

IAdapter