test.txt

Download test.txt

If you can't read please download the document

Upload: vivek-kumar

Post on 15-Jan-2016

3 views

Category:

Documents


1 download

TRANSCRIPT

In order to use Selenium WebDriver, we need a programing language to writeautomation scripts. The language that we select should also have a Selenium clientlibrary available.In this book, we will use Python along with the Selenium WebDriver client libraryto create automated scripts. Python is a widely used general-purpose, high-levelprogramming language. It's easy and its syntax allows us to express concepts infewer lines of code. It emphasizes code readability and provides constructs thatenable us to write programs on both the small and large scale. It also provides anumber of in-built and user-written libraries to achieve complex tasks quite easily.The Selenium WebDriver client library for Python provides access to all the SeleniumWebDriver features and Selenium standalone server for remote and distributedtesting of browser-based applications. Selenium Python language bindings aredeveloped and maintained by David Burns, Adam Goucher, Maik Rder, JasonHuggins, Luke Semerau, Miki Tebeka, and Eric Allenin.The Selenium WebDriver client library is supported on Python Version 2.6, 2.7, 3.2,and 3.3.This chapter will introduce you to the Selenium WebDriver client library for Pythonby demonstrating its installation, basic features, and overall structure.