Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by

For automation testing, which is the best tool, Selenium IDE or Selenium WebDriver?

1 Answer

0 votes
by (106k points)

Before you deciding the best automation tool firstly, you should understand both tools then only you can make a decision.

Let me tell you different variants of Selenium, this would make it easy for you to understand IDE and Webdriver:- 

  1. Selenium IDE:- 

    1. Selenium IDE is a record and plays tool.

    2. It supports Firefox only: It comes as a plugin with Firefox only, so no other browsers are supported.

    3. There is no need to write coding if you want to automate using this tool. It will record your tests and generate HTML scripts for you.

    4. One can not add coding logic in the script, it can only be used for some very basic automation. As you cannot write your own logic or you won’t be able to put conditions or loops in your automation test scripts.

    5. There is no code reusability as we cannot create methods in ide scripts which are in HTML.

  2. Selenium Webdriver:- 

Now let’s talk about selenium webdriver, this is what the world is talking about. Even the study plan which I’m going to share is for Selenium Webdriver. It’s the successor of RC.

    1. Selenium webdriver requires coding.

    2. It is an open-source tool.

    3. It supports Java, C#, PHP, Python, Perl, Ruby.

    4. Supports almost every browser: ff, chrome, ie, safari, opera.

    5. Cross-Platform: Supports every platform like Windows, Linux, Mac.

I hope now you would be in a position to take a decision between Selenium IDE and Webdriver. I would definitely vote to go for Selenium Webdriver if your project is long term. If you want to know more about these things you must read the following Selenium Tutorial. Here is the video on Selenium through which I came to know all about Selenium.

.

Browse Categories

...