{ "info": { "author": "Tom Christie", "author_email": "UNKNOWN", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable" ], "description": "WebDriver Plus\r\n==============\r\n\r\nThe most simple and powerful way to use Selenium with Python\r\n------------------------------------------------------------\r\n\r\nWebDriver Plus is an extension to the Python bindings for Selenium WebDriver,\r\nwhich gives you a more concise and expressive API.\r\n\r\nIt helps you to quickly write readable, robust tests.\r\n\r\nWhat's so great about WebDriver Plus?\r\n\r\n* Browser instances that support pooling and automatic quit on exit.\r\n* A concise API for finding elements, and a wide range of selectors.\r\n* JQuery-style traversal and filtering for locating elements without using\r\n complex xpath expressions.\r\n* Perform actions on elements without having to use ActionChains.\r\n* Element highlighting makes working from the Python console a joy.\r\n\r\n**Note**: If you're interested in helping maintain WebDriver Plus in the long term please get in touch. Most of the author's open source time is currently devoted to working on Django REST framework.\r\n\r\nGetting started\r\n---------------\r\n\r\nInstall `webdriverplus` using `pip`.\r\n\r\n pip install webdriverplus\r\n\r\nNow fire up your Python console...\r\n\r\n >>> from webdriverplus import WebDriver\r\n >>> browser = WebDriver().get('http://www.google.com')\r\n\r\nOk, let's do a search.\r\n\r\n >>> browser.find(name='q').send_keys('selenium\\n')\r\n\r\nNow let's get the headings for all the search results.\r\n\r\n >>> browser.find(id='search').find('h3')\r\n WebElementSet(\r\n