hi iam using selenium rc 1.0.3 (java client). If i want to upgrade to WebDriver, will there be backward compatibility? Will it be like simply using webdriver jar and methods will be same? Or, Will it be like writing from scrap?
|
You can use
This way your existing selenium functions need not be written and new functions can use The following info is available at this link Pros Allows for the WebDriver and Selenium APIs to live side-by-side Provides a simple mechanism for a managed migration from the Selenium RC API to WebDriver’s Does not require the standalone Selenium RC server to be run Cons Does not implement every method More advanced Selenium usage (using “browserbot” or other built-in JavaScript methods from Selenium Core) may not work Some methods may be slower due to underlying implementation differences |
|||
|
|
|
As per my experience it was worthwhile to move from Selenium RC to WebDriver. While moving to WebDriver I also refactored my automation framework to make it more user friendly, robust, maintainable and scalable. The kind of tools, strategies and patterns I used are explained in detail at Web GUI automation tools strategies patterns |
||||
|
|