Friday, 7 April 2017

[Selenium] What's WebDriver

 What's WebDriver

The primary new feature in Selenium 2.0 is the integration of the WebDriver API. WebDriver is designed to provide a simpler, more concise programming interface in addition to addressing some limitations in the Selenium-RC API. Selenium-WebDriver was developed to better support dynamic web pages where elements of a page may change without the page itself being reloaded. WebDriver’s goal is to supply a well-designed object-oriented API that provides improved support for modern advanced web-app testing problems.


Selenium 2.0的主要新功能是WebDriver API的集成。除了解決Selenium-RC API中的一些限制之外,WebDriver旨在提供更簡單,更簡潔的編程接口。 Selenium-WebDriver被開發以更好地支持動態網頁,其中頁面的元素可能改變而不重新加載頁面本身。 WebDriver的目標是提供一個精心設計的面向對象API,為現代高級Web應用程序測試問題提供了更好的支持。


Selenium 1.0 + WebDriver = Selenium 2.0



You must download WebDriver for different Browser. 

您必須下載不同瀏覽器的WebDriver

Download link :  http://www.seleniumhq.org/download/


No comments:

Post a Comment

how-to-recursively-create-subfolder-in-each-folder-of-a-directory-in-cmd

test.cmd: @echo off setlocal for /f "usebackq tokens=*" %%a in (`dir /b /a:d`) do ( rem enter the directory pushd %%a echo...