Difference between WebDriver and selenium RC Software Testing Tools
WebDriver
- Selenium WebDriver software testing tool do not require selenium server for running test.
- WebDriver is using native automation from each and every supported language for running automation scripts on browsers.
- WebDriver supports web as well mobile application testing so you can test mobile applications (iPhone or Android).
- Supporting latest versions of almost all browsers.
- WebDriver controls the browser itself.
- Required selenium server for running test.
- Selenium RC software testing tool is using JavaScripts to drive automation with browser.
- Selenium RC supports only web application testing.
- Supporting all browsers but not supporting latest versions.
- Selenium RC is using javascript to interact and operate on web page
Comments
Post a Comment