Difference between python selenium webdriver and just selenium? Difference between python selenium webdriver and just selenium? selenium selenium

Difference between python selenium webdriver and just selenium?


Which one should I use?

It depends on your goals. If you need to automate some testcases, it's okay to use both of them. But if you are to start some big process, for example testing automation in your company, I would suggest you to use Webdriver. It would give you more portability and it is more modern. By the way, I am not sure, that Selenium RC is to be developed further.


Selenium Webdriver is the newer version of Selenium (The old version was known as Selenium RC). It doesn't require an external server and has better web object support than Selenium RC.

If you have the choice, go with Webdriver.


Webdriver is a self-contained api that doesn't require the server component that SeleniumRC does.