Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Selenium 2 version of Selenium IDE?

I'm new to Selenium and I'm a bit confused about the version numbers. Selenium 2.0 was released in 2011. I just downloaded the Selenium IDE Firefox extension and it is version 1.7.2. Is there also a 2.0 release of the IDE, or does the 1. x series confusingly contain the 2.0 code?

I checked Selenium HQ, which states that 1.7.2 is currently the latest release of the Selenium IDE.

like image 434
Patrick Kenny Avatar asked Apr 12 '12 13:04

Patrick Kenny


People also ask

What is the latest version of Selenium IDE?

Nuget latest release is 4.5. 0. Released on September 28, 2022.

How many versions of Selenium are there?

207 versions since November 13, 2009: 4.5. 0 - September 28, 2022 (156 KB)

Is Selenium IDE and Selenium WebDriver same?

Selenium IDE is an accessory to your testing environment, acting as an extra set of tools for certain testing functions such as log ins, user interface buttons, and search queries. Selenium WebDriver, on the other hand, is a complete system you can use to build your application test requirements.


3 Answers

Versioning of Selenium releases has always been kind of confusing. The essential difference between Selenium 1 and 2 is that Selenium 1 used the Selenium Remote Control interface, while Selenium 2 is based on WebDriver. That means: Selenium 2 tests are such ones that you write in code, e.g. in Java, in an object-oriented manner. Everything you record or script using the Selenium IDE uses the Selenium RC interface, which still works with Selenium 2 for backwards compatibility. So there is no Selenium IDE 2.

like image 140
Rob Avatar answered Sep 27 '22 22:09

Rob


As it happens, I'm actually working on an alternative to Selenium IDE called Se Builder that does support Selenium 2. It's still under development, but the first beta version is due to be released in the next few days.

like image 24
Zarkonnen Avatar answered Sep 28 '22 00:09

Zarkonnen


There is no Selenium IDE 2.0. You can use Selenium IDE with Selenium 1.0 as well as selenium 2.0

like image 42
priya sonss Avatar answered Sep 27 '22 23:09

priya sonss