SlideShare a Scribd company logo
Selenium Python Bindings
Release 2
Baiju Muthukadan
Nov 07, 2018
Selenium python
Contents
1 Installation 3
1.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.2 Downloading Python bindings for Selenium . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.3 Drivers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.4 Detailed instructions for Windows users . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.5 Downloading Selenium server . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
2 Getting Started 7
2.1 Simple Usage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.2 Example Explained . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.3 Using Selenium to write tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
2.4 Walk through of the example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
2.5 Using Selenium with remote WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
3 Navigating 13
3.1 Interacting with the page . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.2 Filling in forms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.3 Drag and drop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3.4 Moving between windows and frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3.5 Popup dialogs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
3.6 Navigation: history and location . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
3.7 Cookies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
4 Locating Elements 17
4.1 Locating by Id . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
4.2 Locating by Name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
4.3 Locating by XPath . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
4.4 Locating Hyperlinks by Link Text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
4.5 Locating Elements by Tag Name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.6 Locating Elements by Class Name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.7 Locating Elements by CSS Selectors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
5 Waits 23
5.1 Explicit Waits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
5.2 Implicit Waits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
6 Page Objects 27
i
6.1 Test case . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
6.2 Page object classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
6.3 Page elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
6.4 Locators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
7 WebDriver API 31
7.1 Exceptions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
7.2 Action Chains . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
7.3 Alerts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
7.4 Special Keys . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
7.5 Locate elements By . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
7.6 Desired Capabilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
7.7 Touch Actions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
7.8 Proxy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
7.9 Utilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
7.10 Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
7.11 Application Cache . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
7.12 Firefox WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
7.13 Firefox WebDriver Options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
7.14 Firefox WebDriver Profile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
7.15 Firefox WebDriver Binary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
7.16 Firefox WebDriver Extension Connection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
7.17 Chrome WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
7.18 Chrome WebDriver Options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
7.19 Chrome WebDriver Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
7.20 Remote WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
7.21 Remote WebDriver WebElement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
7.22 Remote WebDriver Command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
7.23 Remote WebDriver Error Handler . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
7.24 Remote WebDriver Mobile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
7.25 Remote WebDriver Remote Connection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
7.26 Remote WebDriver Utils . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
7.27 Internet Explorer WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
7.28 Android WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
7.29 Opera WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
7.30 PhantomJS WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
7.31 PhantomJS WebDriver Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
7.32 Safari WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
7.33 Safari WebDriver Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
7.34 Select Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
7.35 Wait Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
7.36 Color Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
7.37 Event Firing WebDriver Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
7.38 Abstract Event Listener Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
7.39 Expected conditions Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
8 Appendix: Frequently Asked Questions 95
8.1 How to use ChromeDriver ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
8.2 Does Selenium 2 support XPath 2.0 ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
8.3 How to scroll down to the bottom of a page ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
8.4 How to auto save files using custom Firefox profile ? . . . . . . . . . . . . . . . . . . . . . . . . . . 96
8.5 How to upload files into file inputs ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
8.6 How to use firebug with Firefox ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
8.7 How to take screenshot of the current window ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
ii
9 Indices and tables 99
Python Module Index 101
iii
iv
Selenium Python Bindings, Release 2
Author Baiju Muthukadan
License This document is licensed under a Creative Commons Attribution-ShareAlike 4.0 International
License.
Note: This is not an official documentation. If you would like to contribute to this documentation, you can fork this
project in Github and send pull requests. You can also send your feedback to my email: baiju.m.mail AT gmail DOT
com. So far 40+ community members have contributed to this project (See the closed pull requests). I encourage
contributors to add more sections and make it a good documentation!
Contents 1
Selenium Python Bindings, Release 2
2 Contents
CHAPTER 1
Installation
1.1 Introduction
Selenium Python bindings provides a simple API to write functional/acceptance tests using Selenium WebDriver.
Through Selenium Python API you can access all functionalities of Selenium WebDriver in an intuitive way.
Selenium Python bindings provide a convenient API to access Selenium WebDrivers like Firefox, Ie, Chrome, Remote
etc. The current supported Python versions are 2.7, 3.5 and above.
This documentation explains Selenium 2 WebDriver API. Selenium 1 / Selenium RC API is not covered here.
1.2 Downloading Python bindings for Selenium
You can download Python bindings for Selenium from the PyPI page for selenium package. However, a better ap-
proach would be to use pip to install the selenium package. Python 3.6 has pip available in the standard library. Using
pip, you can install selenium like this:
pip install selenium
You may consider using virtualenv to create isolated Python environments. Python 3.6 has pyvenv which is almost the
same as virtualenv.
1.3 Drivers
Selenium requires a driver to interface with the chosen browser. Firefox, for example, requires geckodriver, which
needs to be installed before the below examples can be run. Make sure it’s in your PATH, e. g., place it in /usr/bin or
/usr/local/bin.
Failure to observe this step will give you an error selenium.common.exceptions.WebDriverException: Message: ‘geck-
odriver’ executable needs to be in PATH.
3
Selenium Python Bindings, Release 2
Other supported browsers will have their own drivers available. Links to some of the more popular browser drivers
follow.
Chrome: https://sites.google.com/a/chromium.org/chromedriver/downloads
Edge: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/
Firefox: https://github.com/mozilla/geckodriver/releases
Safari: https://webkit.org/blog/6900/webdriver-support-in-safari-10/
1.4 Detailed instructions for Windows users
Note: You should have an internet connection to perform this installation.
1. Install Python 3.6 using the MSI available in python.org download page.
2. Start a command prompt using the cmd.exe program and run the pip command as given below to install
selenium.
C:Python35Scriptspip.exe install selenium
Now you can run your test scripts using Python. For example, if you have created a Selenium based script and saved
it inside C:my_selenium_script.py, you can run it like this:
C:Python35python.exe C:my_selenium_script.py
1.5 Downloading Selenium server
Note: The Selenium server is only required if you want to use the remote WebDriver. See the Using Selenium
with remote WebDriver section for more details. If you are a beginner learning Selenium, you can skip this section
and proceed with next chapter.
Selenium server is a Java program. Java Runtime Environment (JRE) 1.6 or newer version is recommended to run
Selenium server.
You can download Selenium server 2.x from the download page of selenium website. The file name should be some-
thing like this: selenium-server-standalone-2.x.x.jar. You can always download the latest 2.x version
of Selenium server.
If Java Runtime Environment (JRE) is not installed in your system, you can download the JRE from the Oracle website.
If you are using a GNU/Linux system and have root access in your system, you can also use your operating system
instructions to install JRE.
If java command is available in the PATH (environment variable), you can start the Selenium server using this com-
mand:
java -jar selenium-server-standalone-2.x.x.jar
Replace 2.x.x with the actual version of Selenium server you downloaded from the site.
4 Chapter 1. Installation
Selenium Python Bindings, Release 2
If JRE is installed as a non-root user and/or if it is not available in the PATH (environment variable), you can type
the relative or absolute path to the java command. Similarly, you can provide a relative or absolute path to Selenium
server jar file. Then, the command will look something like this:
/path/to/java -jar /path/to/selenium-server-standalone-2.x.x.jar
1.5. Downloading Selenium server 5
Selenium Python Bindings, Release 2
6 Chapter 1. Installation
CHAPTER 2
Getting Started
2.1 Simple Usage
If you have installed Selenium Python bindings, you can start using it from Python like this.
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Firefox()
driver.get("http://www.python.org")
assert "Python" in driver.title
elem = driver.find_element_by_name("q")
elem.clear()
elem.send_keys("pycon")
elem.send_keys(Keys.RETURN)
assert "No results found." not in driver.page_source
driver.close()
The above script can be saved into a file (eg:- python_org_search.py), then it can be run like this:
python python_org_search.py
The python which you are running should have the selenium module installed.
2.2 Example Explained
The selenium.webdriver module provides all the WebDriver implementations. Currently supported WebDriver imple-
mentations are Firefox, Chrome, IE and Remote. The Keys class provide keys in the keyboard like RETURN, F1, ALT
etc.
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
7
Selenium Python Bindings, Release 2
Next, the instance of Firefox WebDriver is created.
driver = webdriver.Firefox()
The driver.get method will navigate to a page given by the URL. WebDriver will wait until the page has fully loaded
(that is, the “onload” event has fired) before returning control to your test or script. It’s worth noting that if your page
uses a lot of AJAX on load then WebDriver may not know when it has completely loaded.:
driver.get("http://www.python.org")
The next line is an assertion to confirm that title has “Python” word in it:
assert "Python" in driver.title
WebDriver offers a number of ways to find elements using one of the find_element_by_* methods. For example, the
input text element can be located by its name attribute using find_element_by_name method. A detailed explanation
of finding elements is available in the Locating Elements chapter:
elem = driver.find_element_by_name("q")
Next, we are sending keys, this is similar to entering keys using your keyboard. Special keys can be sent using Keys
class imported from selenium.webdriver.common.keys. To be safe, we’ll first clear any pre-populated text in the input
field (e.g. “Search”) so it doesn’t affect our search results:
elem.clear()
elem.send_keys("pycon")
elem.send_keys(Keys.RETURN)
After submission of the page, you should get the result if there is any. To ensure that some results are found, make an
assertion:
assert "No results found." not in driver.page_source
Finally, the browser window is closed. You can also call quit method instead of close. The quit will exit entire browser
whereas close‘ will close one tab, but if just one tab was open, by default most browser will exit entirely.:
driver.close()
2.3 Using Selenium to write tests
Selenium is mostly used for writing test cases. The selenium package itself doesn’t provide a testing tool/framework.
You can write test cases using Python’s unittest module. The other options for a tool/framework are py.test and nose.
In this chapter, we use unittest as the framework of choice. Here is the modified example which uses unittest module.
This is a test for python.org search functionality:
import unittest
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
class PythonOrgSearch(unittest.TestCase):
def setUp(self):
self.driver = webdriver.Firefox()
(continues on next page)
8 Chapter 2. Getting Started
Selenium Python Bindings, Release 2
(continued from previous page)
def test_search_in_python_org(self):
driver = self.driver
driver.get("http://www.python.org")
self.assertIn("Python", driver.title)
elem = driver.find_element_by_name("q")
elem.send_keys("pycon")
elem.send_keys(Keys.RETURN)
assert "No results found." not in driver.page_source
def tearDown(self):
self.driver.close()
if __name__ == "__main__":
unittest.main()
You can run the above test case from a shell like this:
python test_python_org_search.py
.
----------------------------------------------------------------------
Ran 1 test in 15.566s
OK
The above result shows that the test has been successfully completed.
2.4 Walk through of the example
Initially, all the basic modules required are imported. The unittest module is a built-in Python based on Java’s JUnit.
This module provides the framework for organizing the test cases. The selenium.webdriver module provides all the
WebDriver implementations. Currently supported WebDriver implementations are Firefox, Chrome, Ie and Remote.
The Keys class provide keys in the keyboard like RETURN, F1, ALT etc.
import unittest
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
The test case class is inherited from unittest.TestCase. Inheriting from TestCase class is the way to tell unittest module
that this is a test case:
class PythonOrgSearch(unittest.TestCase):
The setUp is part of initialization, this method will get called before every test function which you are going to write
in this test case class. Here you are creating the instance of Firefox WebDriver.
def setUp(self):
self.driver = webdriver.Firefox()
This is the test case method. The test case method should always start with characters test. The first line inside this
method create a local reference to the driver object created in setUp method.
def test_search_in_python_org(self):
driver = self.driver
2.4. Walk through of the example 9
Selenium Python Bindings, Release 2
The driver.get method will navigate to a page given by the URL. WebDriver will wait until the page has fully loaded
(that is, the “onload” event has fired) before returning control to your test or script. It’s worth noting that if your page
uses a lot of AJAX on load then WebDriver may not know when it has completely loaded.:
driver.get("http://www.python.org")
The next line is an assertion to confirm that title has “Python” word in it:
self.assertIn("Python", driver.title)
WebDriver offers a number of ways to find elements using one of the find_element_by_* methods. For example, the
input text element can be located by its name attribute using find_element_by_name method. Detailed explanation of
finding elements is available in the Locating Elements chapter:
elem = driver.find_element_by_name("q")
Next, we are sending keys, this is similar to entering keys using your keyboard. Special keys can be send using Keys
class imported from selenium.webdriver.common.keys:
elem.send_keys("pycon")
elem.send_keys(Keys.RETURN)
After submission of the page, you should get the result as per search if there is any. To ensure that some results are
found, make an assertion:
assert "No results found." not in driver.page_source
The tearDown method will get called after every test method. This is a place to do all cleanup actions. In the current
method, the browser window is closed. You can also call quit method instead of close. The quit will exit the entire
browser, whereas close will close a tab, but if it is the only tab opened, by default most browser will exit entirely.:
def tearDown(self):
self.driver.close()
Final lines are some boiler plate code to run the test suite:
if __name__ == "__main__":
unittest.main()
2.5 Using Selenium with remote WebDriver
To use the remote WebDriver, you should have Selenium server running. To run the server, use this command:
java -jar selenium-server-standalone-2.x.x.jar
While running the Selenium server, you could see a message looking like this:
15:43:07.541 INFO - RemoteWebDriver instances should connect to: http://127.0.0.
˓→1:4444/wd/hub
The above line says that you can use this URL for connecting to remote WebDriver. Here are some examples:
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
(continues on next page)
10 Chapter 2. Getting Started
Selenium Python Bindings, Release 2
(continued from previous page)
driver = webdriver.Remote(
command_executor='http://127.0.0.1:4444/wd/hub',
desired_capabilities=DesiredCapabilities.CHROME)
driver = webdriver.Remote(
command_executor='http://127.0.0.1:4444/wd/hub',
desired_capabilities=DesiredCapabilities.OPERA)
driver = webdriver.Remote(
command_executor='http://127.0.0.1:4444/wd/hub',
desired_capabilities=DesiredCapabilities.HTMLUNITWITHJS)
The desired capabilities is a dictionary, so instead of using the default dictionaries, you can specify the values explic-
itly:
driver = webdriver.Remote(
command_executor='http://127.0.0.1:4444/wd/hub',
desired_capabilities={'browserName': 'htmlunit',
'version': '2',
'javascriptEnabled': True})
2.5. Using Selenium with remote WebDriver 11
Selenium Python Bindings, Release 2
12 Chapter 2. Getting Started
CHAPTER 3
Navigating
The first thing you’ll want to do with WebDriver is navigate to a link. The normal way to do this is by calling get
method:
driver.get("http://www.google.com")
WebDriver will wait until the page has fully loaded (that is, the onload event has fired) before returning control to
your test or script. It’s worth noting that if your page uses a lot of AJAX on load then WebDriver may not know when
it has completely loaded. If you need to ensure such pages are fully loaded then you can use waits.
3.1 Interacting with the page
Just being able to go to places isn’t terribly useful. What we’d really like to do is to interact with the pages, or, more
specifically, the HTML elements within a page. First of all, we need to find one. WebDriver offers a number of ways
to find elements. For example, given an element defined as:
<input type="text" name="passwd" id="passwd-id" />
you could find it using any of:
element = driver.find_element_by_id("passwd-id")
element = driver.find_element_by_name("passwd")
element = driver.find_element_by_xpath("//input[@id='passwd-id']")
You can also look for a link by its text, but be careful! The text must be an exact match! You should also be careful
when using XPATH in WebDriver. If there’s more than one element that matches the query, then only the first will be
returned. If nothing can be found, a NoSuchElementException will be raised.
WebDriver has an “Object-based” API; we represent all types of elements using the same interface. This means
that although you may see a lot of possible methods you could invoke when you hit your IDE’s auto-complete key
combination, not all of them will make sense or be valid. Don’t worry! WebDriver will attempt to do the Right Thing,
and if you call a method that makes no sense (“setSelected()” on a “meta” tag, for example) an exception will be
raised.
13
Selenium Python Bindings, Release 2
So, you’ve got an element. What can you do with it? First of all, you may want to enter some text into a text field:
element.send_keys("some text")
You can simulate pressing the arrow keys by using the “Keys” class:
element.send_keys(" and some", Keys.ARROW_DOWN)
It is possible to call send_keys on any element, which makes it possible to test keyboard shortcuts such as those used
on GMail. A side-effect of this is that typing something into a text field won’t automatically clear it. Instead, what
you type will be appended to what’s already there. You can easily clear the contents of a text field or textarea with the
clear method:
element.clear()
3.2 Filling in forms
We’ve already seen how to enter text into a textarea or text field, but what about the other elements? You can “toggle”
the state of the drop down, and you can use “setSelected” to set something like an OPTION tag selected. Dealing with
SELECT tags isn’t too bad:
element = driver.find_element_by_xpath("//select[@name='name']")
all_options = element.find_elements_by_tag_name("option")
for option in all_options:
print("Value is: %s" % option.get_attribute("value"))
option.click()
This will find the first “SELECT” element on the page, and cycle through each of its OPTIONs in turn, printing out
their values, and selecting each in turn.
As you can see, this isn’t the most efficient way of dealing with SELECT elements. WebDriver’s support classes
include one called a “Select”, which provides useful methods for interacting with these:
from selenium.webdriver.support.ui import Select
select = Select(driver.find_element_by_name('name'))
select.select_by_index(index)
select.select_by_visible_text("text")
select.select_by_value(value)
WebDriver also provides features for deselecting all the selected options:
select = Select(driver.find_element_by_id('id'))
select.deselect_all()
This will deselect all OPTIONs from that particular SELECT on the page.
Suppose in a test, we need the list of all default selected options, Select class provides a property method that returns
a list:
select = Select(driver.find_element_by_xpath("//select[@name='name']"))
all_selected_options = select.all_selected_options
To get all available options:
options = select.options
14 Chapter 3. Navigating
Selenium Python Bindings, Release 2
Once you’ve finished filling out the form, you probably want to submit it. One way to do this would be to find the
“submit” button and click it:
# Assume the button has the ID "submit" :)
driver.find_element_by_id("submit").click()
Alternatively, WebDriver has the convenience method “submit” on every element. If you call this on an element within
a form, WebDriver will walk up the DOM until it finds the enclosing form and then calls submit on that. If the element
isn’t in a form, then the NoSuchElementException will be raised:
element.submit()
3.3 Drag and drop
You can use drag and drop, either moving an element by a certain amount, or on to another element:
element = driver.find_element_by_name("source")
target = driver.find_element_by_name("target")
from selenium.webdriver import ActionChains
action_chains = ActionChains(driver)
action_chains.drag_and_drop(element, target).perform()
3.4 Moving between windows and frames
It’s rare for a modern web application not to have any frames or to be constrained to a single window. WebDriver
supports moving between named windows using the “switch_to_window” method:
driver.switch_to_window("windowName")
All calls to driver will now be interpreted as being directed to the particular window. But how do you know the
window’s name? Take a look at the javascript or link that opened it:
<a href="somewhere.html" target="windowName">Click here to open a new window</a>
Alternatively, you can pass a “window handle” to the “switch_to_window()” method. Knowing this, it’s possible to
iterate over every open window like so:
for handle in driver.window_handles:
driver.switch_to_window(handle)
You can also swing from frame to frame (or into iframes):
driver.switch_to_frame("frameName")
It’s possible to access subframes by separating the path with a dot, and you can specify the frame by its index too.
That is:
driver.switch_to_frame("frameName.0.child")
would go to the frame named “child” of the first subframe of the frame called “frameName”. All frames are evaluated
as if from *top*.
3.3. Drag and drop 15
Selenium Python Bindings, Release 2
Once we are done with working on frames, we will have to come back to the parent frame which can be done using:
driver.switch_to_default_content()
3.5 Popup dialogs
Selenium WebDriver has built-in support for handling popup dialog boxes. After you’ve triggered action that would
open a popup, you can access the alert with the following:
alert = driver.switch_to_alert()
This will return the currently open alert object. With this object, you can now accept, dismiss, read its contents or even
type into a prompt. This interface works equally well on alerts, confirms, prompts. Refer to the API documentation
for more information.
3.6 Navigation: history and location
Earlier, we covered navigating to a page using the “get” command ( driver.get("http://www.example.
com")) As you’ve seen, WebDriver has a number of smaller, task-focused interfaces, and navigation is a useful task.
To navigate to a page, you can use get method:
driver.get("http://www.example.com")
To move backward and forward in your browser’s history:
driver.forward()
driver.back()
Please be aware that this functionality depends entirely on the underlying driver. It’s just possible that something
unexpected may happen when you call these methods if you’re used to the behavior of one browser over another.
3.7 Cookies
Before we leave these next steps, you may be interested in understanding how to use cookies. First of all, you need to
be on the domain that the cookie will be valid for:
# Go to the correct domain
driver.get("http://www.example.com")
# Now set the cookie. This one's valid for the entire domain
cookie = {‘name’ : ‘foo’, ‘value’ : ‘bar’}
driver.add_cookie(cookie)
# And now output all the available cookies for the current URL
driver.get_cookies()
16 Chapter 3. Navigating
CHAPTER 4
Locating Elements
There are various strategies to locate elements in a page. You can use the most appropriate one for your case. Selenium
provides the following methods to locate elements in a page:
• find_element_by_id
• find_element_by_name
• find_element_by_xpath
• find_element_by_link_text
• find_element_by_partial_link_text
• find_element_by_tag_name
• find_element_by_class_name
• find_element_by_css_selector
To find multiple elements (these methods will return a list):
• find_elements_by_name
• find_elements_by_xpath
• find_elements_by_link_text
• find_elements_by_partial_link_text
• find_elements_by_tag_name
• find_elements_by_class_name
• find_elements_by_css_selector
Apart from the public methods given above, there are two private methods which might be useful with locators in page
objects. These are the two private methods: find_element and find_elements.
Example usage:
17
Selenium Python Bindings, Release 2
from selenium.webdriver.common.by import By
driver.find_element(By.XPATH, '//button[text()="Some text"]')
driver.find_elements(By.XPATH, '//button')
These are the attributes available for By class:
ID = "id"
XPATH = "xpath"
LINK_TEXT = "link text"
PARTIAL_LINK_TEXT = "partial link text"
NAME = "name"
TAG_NAME = "tag name"
CLASS_NAME = "class name"
CSS_SELECTOR = "css selector"
4.1 Locating by Id
Use this when you know id attribute of an element. With this strategy, the first element with the id attribute value
matching the location will be returned. If no element has a matching id attribute, a NoSuchElementException
will be raised.
For instance, consider this page source:
<html>
<body>
<form id="loginForm">
<input name="username" type="text" />
<input name="password" type="password" />
<input name="continue" type="submit" value="Login" />
</form>
</body>
<html>
The form element can be located like this:
login_form = driver.find_element_by_id('loginForm')
4.2 Locating by Name
Use this when you know name attribute of an element. With this strategy, the first element with the name attribute value
matching the location will be returned. If no element has a matching name attribute, a NoSuchElementException
will be raised.
For instance, consider this page source:
<html>
<body>
<form id="loginForm">
<input name="username" type="text" />
<input name="password" type="password" />
<input name="continue" type="submit" value="Login" />
(continues on next page)
18 Chapter 4. Locating Elements
Selenium Python Bindings, Release 2
(continued from previous page)
<input name="continue" type="button" value="Clear" />
</form>
</body>
<html>
The username & password elements can be located like this:
username = driver.find_element_by_name('username')
password = driver.find_element_by_name('password')
This will give the “Login” button as it occurs before the “Clear” button:
continue = driver.find_element_by_name('continue')
4.3 Locating by XPath
XPath is the language used for locating nodes in an XML document. As HTML can be an implementation of XML
(XHTML), Selenium users can leverage this powerful language to target elements in their web applications. XPath
extends beyond (as well as supporting) the simple methods of locating by id or name attributes, and opens up all sorts
of new possibilities such as locating the third checkbox on the page.
One of the main reasons for using XPath is when you don’t have a suitable id or name attribute for the element you
wish to locate. You can use XPath to either locate the element in absolute terms (not advised), or relative to an element
that does have an id or name attribute. XPath locators can also be used to specify elements via attributes other than id
and name.
Absolute XPaths contain the location of all elements from the root (html) and as a result are likely to fail with only
the slightest adjustment to the application. By finding a nearby element with an id or name attribute (ideally a parent
element) you can locate your target element based on the relationship. This is much less likely to change and can make
your tests more robust.
For instance, consider this page source:
<html>
<body>
<form id="loginForm">
<input name="username" type="text" />
<input name="password" type="password" />
<input name="continue" type="submit" value="Login" />
<input name="continue" type="button" value="Clear" />
</form>
</body>
<html>
The form elements can be located like this:
login_form = driver.find_element_by_xpath("/html/body/form[1]")
login_form = driver.find_element_by_xpath("//form[1]")
login_form = driver.find_element_by_xpath("//form[@id='loginForm']")
1. Absolute path (would break if the HTML was changed only slightly)
2. First form element in the HTML
3. The form element with attribute named id and the value loginForm
4.3. Locating by XPath 19
Selenium Python Bindings, Release 2
The username element can be located like this:
username = driver.find_element_by_xpath("//form[input/@name='username']")
username = driver.find_element_by_xpath("//form[@id='loginForm']/input[1]")
username = driver.find_element_by_xpath("//input[@name='username']")
1. First form element with an input child element with attribute named name and the value username
2. First input child element of the form element with attribute named id and the value loginForm
3. First input element with attribute named ‘name’ and the value username
The “Clear” button element can be located like this:
clear_button = driver.find_element_by_xpath("//input[@name='continue'][@type='button']
˓→")
clear_button = driver.find_element_by_xpath("//form[@id='loginForm']/input[4]")
1. Input with attribute named name and the value continue and attribute named type and the value button
2. Fourth input child element of the form element with attribute named id and value loginForm
These examples cover some basics, but in order to learn more, the following references are recommended:
• W3Schools XPath Tutorial
• W3C XPath Recommendation
• XPath Tutorial - with interactive examples.
There are also a couple of very useful Add-ons that can assist in discovering the XPath of an element:
• XPath Checker - suggests XPath and can be used to test XPath results.
• Firebug - XPath suggestions are just one of the many powerful features of this very useful add-on.
• XPath Helper - for Google Chrome
4.4 Locating Hyperlinks by Link Text
Use this when you know link text used within an anchor tag. With this strategy, the first element with the
link text value matching the location will be returned. If no element has a matching link text attribute, a
NoSuchElementException will be raised.
For instance, consider this page source:
<html>
<body>
<p>Are you sure you want to do this?</p>
<a href="continue.html">Continue</a>
<a href="cancel.html">Cancel</a>
</body>
<html>
The continue.html link can be located like this:
continue_link = driver.find_element_by_link_text('Continue')
continue_link = driver.find_element_by_partial_link_text('Conti')
20 Chapter 4. Locating Elements
Selenium Python Bindings, Release 2
4.5 Locating Elements by Tag Name
Use this when you want to locate an element by tag name. With this strategy, the first element with the given tag name
will be returned. If no element has a matching tag name, a NoSuchElementException will be raised.
For instance, consider this page source:
<html>
<body>
<h1>Welcome</h1>
<p>Site content goes here.</p>
</body>
<html>
The heading (h1) element can be located like this:
heading1 = driver.find_element_by_tag_name('h1')
4.6 Locating Elements by Class Name
Use this when you want to locate an element by class attribute name. With this strategy, the first element
with the matching class attribute name will be returned. If no element has a matching class attribute name, a
NoSuchElementException will be raised.
For instance, consider this page source:
<html>
<body>
<p class="content">Site content goes here.</p>
</body>
<html>
The “p” element can be located like this:
content = driver.find_element_by_class_name('content')
4.7 Locating Elements by CSS Selectors
Use this when you want to locate an element by CSS selector syntax. With this strategy, the first element with the
matching CSS selector will be returned. If no element has a matching CSS selector, a NoSuchElementException
will be raised.
For instance, consider this page source:
<html>
<body>
<p class="content">Site content goes here.</p>
</body>
<html>
The “p” element can be located like this:
4.5. Locating Elements by Tag Name 21
Selenium Python Bindings, Release 2
content = driver.find_element_by_css_selector('p.content')
Sauce Labs has good documentation on CSS selectors.
22 Chapter 4. Locating Elements
CHAPTER 5
Waits
These days most of the web apps are using AJAX techniques. When a page is loaded by the browser, the elements
within that page may load at different time intervals. This makes locating elements difficult: if an element is not yet
present in the DOM, a locate function will raise an ElementNotVisibleException exception. Using waits, we can solve
this issue. Waiting provides some slack between actions performed - mostly locating an element or any other operation
with the element.
Selenium Webdriver provides two types of waits - implicit & explicit. An explicit wait makes WebDriver wait for a
certain condition to occur before proceeding further with execution. An implicit wait makes WebDriver poll the DOM
for a certain amount of time when trying to locate an element.
5.1 Explicit Waits
An explicit wait is a code you define to wait for a certain condition to occur before proceeding further in the code.
The extreme case of this is time.sleep(), which sets the condition to an exact time period to wait. There are some
convenience methods provided that help you write code that will wait only as long as required. WebDriverWait in
combination with ExpectedCondition is one way this can be accomplished.
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
driver = webdriver.Firefox()
driver.get("http://somedomain/url_that_delays_loading")
try:
element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.ID, "myDynamicElement"))
)
finally:
driver.quit()
23
Selenium Python Bindings, Release 2
This waits up to 10 seconds before throwing a TimeoutException unless it finds the element to return within 10 sec-
onds. WebDriverWait by default calls the ExpectedCondition every 500 milliseconds until it returns successfully. A
successful return is for ExpectedCondition type is Boolean return true or not null return value for all other Expected-
Condition types.
Expected Conditions
There are some common conditions that are frequently of use when automating web browsers. Listed below are
the names of each. Selenium Python binding provides some convenience methods so you don’t have to code an
expected_condition class yourself or create your own utility package for them.
• title_is
• title_contains
• presence_of_element_located
• visibility_of_element_located
• visibility_of
• presence_of_all_elements_located
• text_to_be_present_in_element
• text_to_be_present_in_element_value
• frame_to_be_available_and_switch_to_it
• invisibility_of_element_located
• element_to_be_clickable
• staleness_of
• element_to_be_selected
• element_located_to_be_selected
• element_selection_state_to_be
• element_located_selection_state_to_be
• alert_is_present
from selenium.webdriver.support import expected_conditions as EC
wait = WebDriverWait(driver, 10)
element = wait.until(EC.element_to_be_clickable((By.ID, 'someid')))
The expected_conditions module contains a set of predefined conditions to use with WebDriverWait.
Custom Wait Conditions
You can also create custom wait conditions when none of the previous convenience methods fit your requirements.
A custom wait condition can be created using a class with __call__ method which returns False when the condition
doesn’t match.
class element_has_css_class(object):
"""An expectation for checking that an element has a particular css class.
locator - used to find the element
returns the WebElement once it has the particular css class
"""
def __init__(self, locator, css_class):
(continues on next page)
24 Chapter 5. Waits
Selenium Python Bindings, Release 2
(continued from previous page)
self.locator = locator
self.css_class = css_class
def __call__(self, driver):
element = driver.find_element(*self.locator) # Finding the referenced element
if self.css_class in element.get_attribute("class"):
return element
else:
return False
# Wait until an element with id='myNewInput' has class 'myCSSClass'
wait = WebDriverWait(driver, 10)
element = wait.until(element_has_css_class((By.ID, 'myNewInput'), "myCSSClass"))
5.2 Implicit Waits
An implicit wait tells WebDriver to poll the DOM for a certain amount of time when trying to find any element (or
elements) not immediately available. The default setting is 0. Once set, the implicit wait is set for the life of the
WebDriver object.
from selenium import webdriver
driver = webdriver.Firefox()
driver.implicitly_wait(10) # seconds
driver.get("http://somedomain/url_that_delays_loading")
myDynamicElement = driver.find_element_by_id("myDynamicElement")
5.2. Implicit Waits 25
Selenium Python Bindings, Release 2
26 Chapter 5. Waits
CHAPTER 6
Page Objects
This chapter is a tutorial introduction to page objects design pattern. A page object represents an area in the web
application user interface that your test is interacting.
Benefits of using page object pattern:
• Creating reusable code that can be shared across multiple test cases
• Reducing the amount of duplicated code
• If the user interface changes, the fix needs changes in only one place
6.1 Test case
Here is a test case which searches for a word in python.org website and ensure some results are found.
import unittest
from selenium import webdriver
import page
class PythonOrgSearch(unittest.TestCase):
"""A sample test class to show how page object works"""
def setUp(self):
self.driver = webdriver.Firefox()
self.driver.get("http://www.python.org")
def test_search_in_python_org(self):
"""
Tests python.org search feature. Searches for the word "pycon" then verified
˓→that some results show up.
Note that it does not look for any particular text in search results page.
˓→This test verifies that
the results were not empty.
(continues on next page)
27
Selenium Python Bindings, Release 2
(continued from previous page)
"""
#Load the main page. In this case the home page of Python.org.
main_page = page.MainPage(self.driver)
#Checks if the word "Python" is in title
assert main_page.is_title_matches(), "python.org title doesn't match."
#Sets the text of search textbox to "pycon"
main_page.search_text_element = "pycon"
main_page.click_go_button()
search_results_page = page.SearchResultsPage(self.driver)
#Verifies that the results page is not empty
assert search_results_page.is_results_found(), "No results found."
def tearDown(self):
self.driver.close()
if __name__ == "__main__":
unittest.main()
6.2 Page object classes
The page object pattern intends creating an object for each web page. By following this technique a layer of separation
between the test code and technical implementation is created.
The page.py will look like this:
from element import BasePageElement
from locators import MainPageLocators
class SearchTextElement(BasePageElement):
"""This class gets the search text from the specified locator"""
#The locator for search box where search string is entered
locator = 'q'
class BasePage(object):
"""Base class to initialize the base page that will be called from all pages"""
def __init__(self, driver):
self.driver = driver
class MainPage(BasePage):
"""Home page action methods come here. I.e. Python.org"""
#Declares a variable that will contain the retrieved text
search_text_element = SearchTextElement()
def is_title_matches(self):
"""Verifies that the hardcoded text "Python" appears in page title"""
return "Python" in self.driver.title
def click_go_button(self):
(continues on next page)
28 Chapter 6. Page Objects
Selenium Python Bindings, Release 2
(continued from previous page)
"""Triggers the search"""
element = self.driver.find_element(*MainPageLocators.GO_BUTTON)
element.click()
class SearchResultsPage(BasePage):
"""Search results page action methods come here"""
def is_results_found(self):
# Probably should search for this text in the specific page
# element, but as for now it works fine
return "No results found." not in self.driver.page_source
6.3 Page elements
The element.py will look like this:
from selenium.webdriver.support.ui import WebDriverWait
class BasePageElement(object):
"""Base page class that is initialized on every page object class."""
def __set__(self, obj, value):
"""Sets the text to the value supplied"""
driver = obj.driver
WebDriverWait(driver, 100).until(
lambda driver: driver.find_element_by_name(self.locator))
driver.find_element_by_name(self.locator).clear()
driver.find_element_by_name(self.locator).send_keys(value)
def __get__(self, obj, owner):
"""Gets the text of the specified object"""
driver = obj.driver
WebDriverWait(driver, 100).until(
lambda driver: driver.find_element_by_name(self.locator))
element = driver.find_element_by_name(self.locator)
return element.get_attribute("value")
6.4 Locators
One of the practices is to separate the locator strings from the place where they are being used. In this example,
locators of the same page belong to same class.
The locators.py will look like this:
from selenium.webdriver.common.by import By
class MainPageLocators(object):
"""A class for main page locators. All main page locators should come here"""
GO_BUTTON = (By.ID, 'submit')
(continues on next page)
6.3. Page elements 29
Selenium Python Bindings, Release 2
(continued from previous page)
class SearchResultsPageLocators(object):
"""A class for search results locators. All search results locators should come
˓→here"""
pass
30 Chapter 6. Page Objects
CHAPTER 7
WebDriver API
Note: This is not an official documentation. Official API documentation is available here.
This chapter covers all the interfaces of Selenium WebDriver.
Recommended Import Style
The API definitions in this chapter show the absolute location of classes. However, the recommended import style is
as given below:
from selenium import webdriver
Then, you can access the classes like this:
webdriver.Firefox
webdriver.FirefoxProfile
webdriver.Chrome
webdriver.ChromeOptions
webdriver.Ie
webdriver.Opera
webdriver.PhantomJS
webdriver.Remote
webdriver.DesiredCapabilities
webdriver.ActionChains
webdriver.TouchActions
webdriver.Proxy
The special keys class (Keys) can be imported like this:
from selenium.webdriver.common.keys import Keys
The exception classes can be imported like this (Replace the TheNameOfTheExceptionClass with the actual
class name given below):
31
Selenium Python Bindings, Release 2
from selenium.common.exceptions import [TheNameOfTheExceptionClass]
Conventions used in the API
Some attributes are callable (or methods) and others are non-callable (properties). All the callable attributes are ending
with round brackets.
Here is an example for property:
• current_url
URL of the currently loaded page.
Usage:
driver.current_url
Here is an example of a method:
• close()
Closes the current window.
Usage:
driver.close()
7.1 Exceptions
Exceptions that may happen in all the webdriver code.
exception selenium.common.exceptions.ElementClickInterceptedException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
The Element Click command could not be completed because the element receiving the events is obscuring the
element that was requested clicked.
exception selenium.common.exceptions.ElementNotInteractableException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.InvalidElementStateException
Thrown when an element is present in the DOM but interactions with that element will hit another element do
to paint order
exception selenium.common.exceptions.ElementNotSelectableException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.InvalidElementStateException
Thrown when trying to select an unselectable element.
For example, selecting a ‘script’ element.
32 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
exception selenium.common.exceptions.ElementNotVisibleException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.InvalidElementStateException
Thrown when an element is present on the DOM, but it is not visible, and so is not able to be interacted with.
Most commonly encountered when trying to click or read text of an element that is hidden from view.
exception selenium.common.exceptions.ErrorInResponseException(response, msg)
Bases: selenium.common.exceptions.WebDriverException
Thrown when an error has occurred on the server side.
This may happen when communicating with the firefox extension or the remote driver server.
__init__(response, msg)
x.__init__(...) initializes x; see help(type(x)) for signature
exception selenium.common.exceptions.ImeActivationFailedException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when activating an IME engine has failed.
exception selenium.common.exceptions.ImeNotAvailableException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when IME support is not available. This exception is thrown for every IME-related method call if IME
support is not available on the machine.
exception selenium.common.exceptions.InsecureCertificateException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Navigation caused the user agent to hit a certificate warning, which is usually the result of an expired or invalid
TLS certificate.
exception selenium.common.exceptions.InvalidArgumentException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
The arguments passed to a command are either invalid or malformed.
exception selenium.common.exceptions.InvalidCookieDomainException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when attempting to add a cookie under a different domain than the current URL.
7.1. Exceptions 33
Selenium Python Bindings, Release 2
exception selenium.common.exceptions.InvalidCoordinatesException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
The coordinates provided to an interactions operation are invalid.
exception selenium.common.exceptions.InvalidElementStateException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when a command could not be completed because the element is in an invalid state.
This can be caused by attempting to clear an element that isn’t both editable and resettable.
exception selenium.common.exceptions.InvalidSelectorException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.NoSuchElementException
Thrown when the selector which is used to find an element does not return a WebElement. Currently this only
happens when the selector is an xpath expression and it is either syntactically invalid (i.e. it is not a xpath
expression) or the expression does not select WebElements (e.g. “count(//input)”).
exception selenium.common.exceptions.InvalidSessionIdException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Occurs if the given session id is not in the list of active sessions, meaning the session either does not exist or
that it’s not active.
exception selenium.common.exceptions.InvalidSwitchToTargetException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when frame or window target to be switched doesn’t exist.
exception selenium.common.exceptions.JavascriptException(msg=None,
screen=None, stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
An error occurred while executing JavaScript supplied by the user.
exception selenium.common.exceptions.MoveTargetOutOfBoundsException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when the target provided to the ActionsChains move() method is invalid, i.e. out of document.
exception selenium.common.exceptions.NoAlertPresentException(msg=None,
screen=None,
stacktrace=None)
Bases: selenium.common.exceptions.WebDriverException
34 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
Thrown when switching to no presented alert.
This can be caused by calling an operation on the Alert() class when an alert is not yet on the screen.
exception selenium.common.exceptions.NoSuchAttributeException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when the attribute of element could not be found.
You may want to check if the attribute exists in the particular browser you are testing against. Some browsers
may have different property names for the same property. (IE8’s .innerText vs. Firefox .textContent)
exception selenium.common.exceptions.NoSuchCookieException(msg=None,
screen=None, stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
No cookie matching the given path name was found amongst the associated cookies of the current browsing
context’s active document.
exception selenium.common.exceptions.NoSuchElementException(msg=None,
screen=None,
stacktrace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when element could not be found.
If you encounter this exception, you may want to check the following:
• Check your selector used in your find_by...
• Element may not yet be on the screen at the time of the find operation, (webpage is still loading)
see selenium.webdriver.support.wait.WebDriverWait() for how to write a wait wrapper to wait for an
element to appear.
exception selenium.common.exceptions.NoSuchFrameException(msg=None,
screen=None, stack-
trace=None)
Bases: selenium.common.exceptions.InvalidSwitchToTargetException
Thrown when frame target to be switched doesn’t exist.
exception selenium.common.exceptions.NoSuchWindowException(msg=None,
screen=None, stack-
trace=None)
Bases: selenium.common.exceptions.InvalidSwitchToTargetException
Thrown when window target to be switched doesn’t exist.
To find the current set of active window handles, you can get a list of the active window handles in the following
way:
print driver.window_handles
exception selenium.common.exceptions.RemoteDriverServerException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
7.1. Exceptions 35
Selenium Python Bindings, Release 2
exception selenium.common.exceptions.ScreenshotException(msg=None,
screen=None, stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
A screen capture was made impossible.
exception selenium.common.exceptions.SessionNotCreatedException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
A new session could not be created.
exception selenium.common.exceptions.StaleElementReferenceException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when a reference to an element is now “stale”.
Stale means the element no longer appears on the DOM of the page.
Possible causes of StaleElementReferenceException include, but not limited to:
• You are no longer on the same page, or the page may have refreshed since the element was located.
• The element may have been removed and re-added to the screen, since it was located. Such as an
element being relocated. This can happen typically with a javascript framework when values are
updated and the node is rebuilt.
• Element may have been inside an iframe or another context which was refreshed.
exception selenium.common.exceptions.TimeoutException(msg=None, screen=None,
stacktrace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when a command does not complete in enough time.
exception selenium.common.exceptions.UnableToSetCookieException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when a driver fails to set a cookie.
exception selenium.common.exceptions.UnexpectedAlertPresentException(msg=None,
screen=None,
stack-
trace=None,
alert_text=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when an unexpected alert is appeared.
Usually raised when when an expected modal is blocking webdriver form executing any more commands.
__init__(msg=None, screen=None, stacktrace=None, alert_text=None)
x.__init__(...) initializes x; see help(type(x)) for signature
36 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
exception selenium.common.exceptions.UnexpectedTagNameException(msg=None,
screen=None,
stack-
trace=None)
Bases: selenium.common.exceptions.WebDriverException
Thrown when a support class did not get an expected web element.
exception selenium.common.exceptions.UnknownMethodException(msg=None,
screen=None,
stacktrace=None)
Bases: selenium.common.exceptions.WebDriverException
The requested command matched a known URL but did not match an method for that URL.
exception selenium.common.exceptions.WebDriverException(msg=None, screen=None,
stacktrace=None)
Bases: exceptions.Exception
Base webdriver exception.
__init__(msg=None, screen=None, stacktrace=None)
x.__init__(...) initializes x; see help(type(x)) for signature
7.2 Action Chains
The ActionChains implementation,
class selenium.webdriver.common.action_chains.ActionChains(driver)
Bases: object
ActionChains are a way to automate low level interactions such as mouse movements, mouse button actions,
key press, and context menu interactions. This is useful for doing more complex actions like hover over and
drag and drop.
Generate user actions. When you call methods for actions on the ActionChains object, the actions are stored
in a queue in the ActionChains object. When you call perform(), the events are fired in the order they are
queued up.
ActionChains can be used in a chain pattern:
menu = driver.find_element_by_css_selector(".nav")
hidden_submenu = driver.find_element_by_css_selector(".nav #submenu1")
ActionChains(driver).move_to_element(menu).click(hidden_submenu).perform()
Or actions can be queued up one by one, then performed.:
menu = driver.find_element_by_css_selector(".nav")
hidden_submenu = driver.find_element_by_css_selector(".nav #submenu1")
actions = ActionChains(driver)
actions.move_to_element(menu)
actions.click(hidden_submenu)
actions.perform()
Either way, the actions are performed in the order they are called, one after another.
__init__(driver)
Creates a new ActionChains.
7.2. Action Chains 37
Selenium Python Bindings, Release 2
Args
• driver: The WebDriver instance which performs user actions.
click(on_element=None)
Clicks an element.
Args
• on_element: The element to click. If None, clicks on current mouse position.
click_and_hold(on_element=None)
Holds down the left mouse button on an element.
Args
• on_element: The element to mouse down. If None, clicks on current mouse position.
context_click(on_element=None)
Performs a context-click (right click) on an element.
Args
• on_element: The element to context-click. If None, clicks on current mouse position.
double_click(on_element=None)
Double-clicks an element.
Args
• on_element: The element to double-click. If None, clicks on current mouse position.
drag_and_drop(source, target)
Holds down the left mouse button on the source element, then moves to the target element and releases
the mouse button.
Args
• source: The element to mouse down.
• target: The element to mouse up.
drag_and_drop_by_offset(source, xoffset, yoffset)
Holds down the left mouse button on the source element, then moves to the target offset and releases
the mouse button.
Args
• source: The element to mouse down.
• xoffset: X offset to move to.
• yoffset: Y offset to move to.
key_down(value, element=None)
Sends a key press only, without releasing it. Should only be used with modifier keys (Control, Alt and
Shift).
Args
• value: The modifier key to send. Values are defined in Keys class.
• element: The element to send keys. If None, sends a key to current focused element.
38 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
Example, pressing ctrl+c:
ActionChains(driver).key_down(Keys.CONTROL).send_keys('c').key_up(Keys.
˓→CONTROL).perform()
key_up(value, element=None)
Releases a modifier key.
Args
• value: The modifier key to send. Values are defined in Keys class.
• element: The element to send keys. If None, sends a key to current focused element.
Example, pressing ctrl+c:
ActionChains(driver).key_down(Keys.CONTROL).send_keys('c').key_up(Keys.
˓→CONTROL).perform()
move_by_offset(xoffset, yoffset)
Moving the mouse to an offset from current mouse position.
Args
• xoffset: X offset to move to, as a positive or negative integer.
• yoffset: Y offset to move to, as a positive or negative integer.
move_to_element(to_element)
Moving the mouse to the middle of an element.
Args
• to_element: The WebElement to move to.
move_to_element_with_offset(to_element, xoffset, yoffset)
Move the mouse by an offset of the specified element. Offsets are relative to the top-left corner of the
element.
Args
• to_element: The WebElement to move to.
• xoffset: X offset to move to.
• yoffset: Y offset to move to.
pause(seconds)
Pause all inputs for the specified duration in seconds
perform()
Performs all stored actions.
release(on_element=None)
Releasing a held mouse button on an element.
Args
• on_element: The element to mouse up. If None, releases on current mouse position.
reset_actions()
Clears actions that are already stored locally and on the remote end
7.2. Action Chains 39
Selenium Python Bindings, Release 2
send_keys(*keys_to_send)
Sends keys to current focused element.
Args
• keys_to_send: The keys to send. Modifier keys constants can be found in the ‘Keys’ class.
send_keys_to_element(element, *keys_to_send)
Sends keys to an element.
Args
• element: The element to send keys.
• keys_to_send: The keys to send. Modifier keys constants can be found in the ‘Keys’ class.
7.3 Alerts
The Alert implementation.
class selenium.webdriver.common.alert.Alert(driver)
Bases: object
Allows to work with alerts.
Use this class to interact with alert prompts. It contains methods for dismissing, accepting, inputting, and getting
text from alert prompts.
Accepting / Dismissing alert prompts:
Alert(driver).accept()
Alert(driver).dismiss()
Inputting a value into an alert prompt:
name_prompt = Alert(driver) name_prompt.send_keys(“Willian Shakesphere”)
name_prompt.accept()
Reading a the text of a prompt for verification:
alert_text = Alert(driver).text self.assertEqual(“Do you wish to quit?”, alert_text)
__init__(driver)
Creates a new Alert.
Args
• driver: The WebDriver instance which performs user actions.
accept()
Accepts the alert available.
Usage:: Alert(driver).accept() # Confirm a alert dialog.
dismiss()
Dismisses the alert available.
send_keys(keysToSend)
Send Keys to the Alert.
Args
• keysToSend: The text to be sent to Alert.
40 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
text
Gets the text of the Alert.
7.4 Special Keys
The Keys implementation.
class selenium.webdriver.common.keys.Keys
Bases: object
Set of special keys codes.
ADD = u'ue025'
ALT = u'ue00a'
ARROW_DOWN = u'ue015'
ARROW_LEFT = u'ue012'
ARROW_RIGHT = u'ue014'
ARROW_UP = u'ue013'
BACKSPACE = u'ue003'
BACK_SPACE = u'ue003'
CANCEL = u'ue001'
CLEAR = u'ue005'
COMMAND = u'ue03d'
CONTROL = u'ue009'
DECIMAL = u'ue028'
DELETE = u'ue017'
DIVIDE = u'ue029'
DOWN = u'ue015'
END = u'ue010'
ENTER = u'ue007'
EQUALS = u'ue019'
ESCAPE = u'ue00c'
F1 = u'ue031'
F10 = u'ue03a'
F11 = u'ue03b'
F12 = u'ue03c'
F2 = u'ue032'
F3 = u'ue033'
F4 = u'ue034'
F5 = u'ue035'
7.4. Special Keys 41
Selenium Python Bindings, Release 2
F6 = u'ue036'
F7 = u'ue037'
F8 = u'ue038'
F9 = u'ue039'
HELP = u'ue002'
HOME = u'ue011'
INSERT = u'ue016'
LEFT = u'ue012'
LEFT_ALT = u'ue00a'
LEFT_CONTROL = u'ue009'
LEFT_SHIFT = u'ue008'
META = u'ue03d'
MULTIPLY = u'ue024'
NULL = u'ue000'
NUMPAD0 = u'ue01a'
NUMPAD1 = u'ue01b'
NUMPAD2 = u'ue01c'
NUMPAD3 = u'ue01d'
NUMPAD4 = u'ue01e'
NUMPAD5 = u'ue01f'
NUMPAD6 = u'ue020'
NUMPAD7 = u'ue021'
NUMPAD8 = u'ue022'
NUMPAD9 = u'ue023'
PAGE_DOWN = u'ue00f'
PAGE_UP = u'ue00e'
PAUSE = u'ue00b'
RETURN = u'ue006'
RIGHT = u'ue014'
SEMICOLON = u'ue018'
SEPARATOR = u'ue026'
SHIFT = u'ue008'
SPACE = u'ue00d'
SUBTRACT = u'ue027'
TAB = u'ue004'
UP = u'ue013'
42 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
7.5 Locate elements By
These are the attributes which can be used to locate elements. See the Locating Elements chapter for example usages.
The By implementation.
class selenium.webdriver.common.by.By
Bases: object
Set of supported locator strategies.
CLASS_NAME = 'class name'
CSS_SELECTOR = 'css selector'
ID = 'id'
LINK_TEXT = 'link text'
NAME = 'name'
PARTIAL_LINK_TEXT = 'partial link text'
TAG_NAME = 'tag name'
XPATH = 'xpath'
7.6 Desired Capabilities
See the Using Selenium with remote WebDriver section for example usages of desired capabilities.
The Desired Capabilities implementation.
class selenium.webdriver.common.desired_capabilities.DesiredCapabilities
Bases: object
Set of default supported desired capabilities.
Use this as a starting point for creating a desired capabilities object for requesting remote webdrivers for con-
necting to selenium server or selenium grid.
Usage Example:
from selenium import webdriver
selenium_grid_url = "http://198.0.0.1:4444/wd/hub"
# Create a desired capabilities object as a starting point.
capabilities = DesiredCapabilities.FIREFOX.copy()
capabilities['platform'] = "WINDOWS"
capabilities['version'] = "10"
# Instantiate an instance of Remote WebDriver with the desired capabilities.
driver = webdriver.Remote(desired_capabilities=capabilities,
command_executor=selenium_grid_url)
Note: Always use ‘.copy()’ on the DesiredCapabilities object to avoid the side effects of altering the Global
class instance.
ANDROID = {'browserName': 'android', 'platform': 'ANDROID', 'version': ''}
CHROME = {'browserName': 'chrome', 'platform': 'ANY', 'version': ''}
7.5. Locate elements By 43
Selenium Python Bindings, Release 2
EDGE = {'browserName': 'MicrosoftEdge', 'platform': 'WINDOWS', 'version': ''}
FIREFOX = {'acceptInsecureCerts': True, 'browserName': 'firefox', 'marionette': True
HTMLUNIT = {'browserName': 'htmlunit', 'platform': 'ANY', 'version': ''}
HTMLUNITWITHJS = {'browserName': 'htmlunit', 'javascriptEnabled': True, 'platform':
INTERNETEXPLORER = {'browserName': 'internet explorer', 'platform': 'WINDOWS', 'versi
IPAD = {'browserName': 'iPad', 'platform': 'MAC', 'version': ''}
IPHONE = {'browserName': 'iPhone', 'platform': 'MAC', 'version': ''}
OPERA = {'browserName': 'opera', 'platform': 'ANY', 'version': ''}
PHANTOMJS = {'browserName': 'phantomjs', 'javascriptEnabled': True, 'platform': 'ANY
SAFARI = {'browserName': 'safari', 'platform': 'MAC', 'version': ''}
WEBKITGTK = {'browserName': 'MiniBrowser', 'platform': 'ANY', 'version': ''}
7.7 Touch Actions
The Touch Actions implementation
class selenium.webdriver.common.touch_actions.TouchActions(driver)
Bases: object
Generate touch actions. Works like ActionChains; actions are stored in the TouchActions object and are fired
with perform().
__init__(driver)
Creates a new TouchActions object.
Args
• driver: The WebDriver instance which performs user actions. It should be with touch-
screen enabled.
double_tap(on_element)
Double taps on a given element.
Args
• on_element: The element to tap.
flick(xspeed, yspeed)
Flicks, starting anywhere on the screen.
Args
• xspeed: The X speed in pixels per second.
• yspeed: The Y speed in pixels per second.
flick_element(on_element, xoffset, yoffset, speed)
Flick starting at on_element, and moving by the xoffset and yoffset with specified speed.
Args
• on_element: Flick will start at center of element.
• xoffset: X offset to flick to.
• yoffset: Y offset to flick to.
44 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
• speed: Pixels per second to flick.
long_press(on_element)
Long press on an element.
Args
• on_element: The element to long press.
move(xcoord, ycoord)
Move held tap to specified location.
Args
• xcoord: X Coordinate to move.
• ycoord: Y Coordinate to move.
perform()
Performs all stored actions.
release(xcoord, ycoord)
Release previously issued tap ‘and hold’ command at specified location.
Args
• xcoord: X Coordinate to release.
• ycoord: Y Coordinate to release.
scroll(xoffset, yoffset)
Touch and scroll, moving by xoffset and yoffset.
Args
• xoffset: X offset to scroll to.
• yoffset: Y offset to scroll to.
scroll_from_element(on_element, xoffset, yoffset)
Touch and scroll starting at on_element, moving by xoffset and yoffset.
Args
• on_element: The element where scroll starts.
• xoffset: X offset to scroll to.
• yoffset: Y offset to scroll to.
tap(on_element)
Taps on a given element.
Args
• on_element: The element to tap.
tap_and_hold(xcoord, ycoord)
Touch down at given coordinates.
Args
• xcoord: X Coordinate to touch down.
• ycoord: Y Coordinate to touch down.
7.7. Touch Actions 45
Selenium Python Bindings, Release 2
7.8 Proxy
The Proxy implementation.
class selenium.webdriver.common.proxy.Proxy(raw=None)
Bases: object
Proxy contains information about proxy type and necessary proxy settings.
__init__(raw=None)
Creates a new Proxy.
Args
• raw: raw proxy data. If None, default class values are used.
add_to_capabilities(capabilities)
Adds proxy information as capability in specified capabilities.
Args
• capabilities: The capabilities to which proxy will be added.
auto_detect
Returns autodetect setting.
autodetect = False
ftpProxy = ''
ftp_proxy
Returns ftp proxy setting.
httpProxy = ''
http_proxy
Returns http proxy setting.
noProxy = ''
no_proxy
Returns noproxy setting.
proxyAutoconfigUrl = ''
proxyType = {'ff_value': 6, 'string': 'UNSPECIFIED'}
proxy_autoconfig_url
Returns proxy autoconfig url setting.
proxy_type
Returns proxy type as ProxyType.
socksPassword = ''
socksProxy = ''
socksUsername = ''
socks_password
Returns socks proxy password setting.
socks_proxy
Returns socks proxy setting.
46 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
socks_username
Returns socks proxy username setting.
sslProxy = ''
ssl_proxy
Returns https proxy setting.
class selenium.webdriver.common.proxy.ProxyType
Set of possible types of proxy.
Each proxy type has 2 properties: ‘ff_value’ is value of Firefox profile preference, ‘string’ is id of proxy type.
classmethod load(value)
AUTODETECT = {'ff_value': 4, 'string': 'AUTODETECT'}
DIRECT = {'ff_value': 0, 'string': 'DIRECT'}
MANUAL = {'ff_value': 1, 'string': 'MANUAL'}
PAC = {'ff_value': 2, 'string': 'PAC'}
RESERVED_1 = {'ff_value': 3, 'string': 'RESERVED1'}
SYSTEM = {'ff_value': 5, 'string': 'SYSTEM'}
UNSPECIFIED = {'ff_value': 6, 'string': 'UNSPECIFIED'}
class selenium.webdriver.common.proxy.ProxyTypeFactory
Factory for proxy types.
static make(ff_value, string)
7.9 Utilities
The Utils methods.
selenium.webdriver.common.utils.find_connectable_ip(host, port=None)
Resolve a hostname to an IP, preferring IPv4 addresses.
We prefer IPv4 so that we don’t change behavior from previous IPv4-only implementations, and because some
drivers (e.g., FirefoxDriver) do not support IPv6 connections.
If the optional port number is provided, only IPs that listen on the given port are considered.
Args
• host - A hostname.
• port - Optional port number.
Returns A single IP address, as a string. If any IPv4 address is found, one is returned. Otherwise, if
any IPv6 address is found, one is returned. If neither, then None is returned.
selenium.webdriver.common.utils.free_port()
Determines a free port using sockets.
selenium.webdriver.common.utils.is_connectable(port, host=’localhost’)
Tries to connect to the server at port to see if it is running.
Args
• port - The port to connect.
7.9. Utilities 47
Selenium Python Bindings, Release 2
selenium.webdriver.common.utils.is_url_connectable(port)
Tries to connect to the HTTP server at /status path and specified port to see if it responds successfully.
Args
• port - The port to connect.
selenium.webdriver.common.utils.join_host_port(host, port)
Joins a hostname and port together.
This is a minimal implementation intended to cope with IPv6 literals. For example, _join_host_port(‘::1’, 80)
== ‘[::1]:80’.
Args
• host - A hostname.
• port - An integer port.
selenium.webdriver.common.utils.keys_to_typing(value)
Processes the values that will be typed in the element.
7.10 Service
class selenium.webdriver.common.service.Service(executable, port=0, log_file=-3,
env=None, start_error_message=”)
Bases: object
__init__(executable, port=0, log_file=-3, env=None, start_error_message=”)
x.__init__(...) initializes x; see help(type(x)) for signature
assert_process_still_running()
command_line_args()
is_connectable()
send_remote_shutdown_command()
start()
Starts the Service.
Exceptions
• WebDriverException : Raised either when it can’t start the service or when it can’t connect
to the service
stop()
Stops the service.
service_url
Gets the url of the Service
7.11 Application Cache
The ApplicationCache implementaion.
class selenium.webdriver.common.html5.application_cache.ApplicationCache(driver)
Bases: object
48 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
__init__(driver)
Creates a new Aplication Cache.
Args
• driver: The WebDriver instance which performs user actions.
CHECKING = 2
DOWNLOADING = 3
IDLE = 1
OBSOLETE = 5
UNCACHED = 0
UPDATE_READY = 4
status
Returns a current status of application cache.
7.12 Firefox WebDriver
class selenium.webdriver.firefox.webdriver.WebDriver(firefox_profile=None,
firefox_binary=None,
timeout=30, capabili-
ties=None, proxy=None, exe-
cutable_path=’geckodriver’,
options=None, ser-
vice_log_path=’geckodriver.log’,
firefox_options=None,
service_args=None, de-
sired_capabilities=None,
log_path=None,
keep_alive=True)
Bases: selenium.webdriver.remote.webdriver.WebDriver
__init__(firefox_profile=None, firefox_binary=None, timeout=30, capabilities=None, proxy=None,
executable_path=’geckodriver’, options=None, service_log_path=’geckodriver.log’, fire-
fox_options=None, service_args=None, desired_capabilities=None, log_path=None,
keep_alive=True)
Starts a new local session of Firefox.
Based on the combination and specificity of the various keyword arguments, a capabilities dictionary will
be constructed that is passed to the remote end.
The keyword arguments given to this constructor are helpers to more easily allow Firefox WebDriver
sessions to be customised with different options. They are mapped on to a capabilities dictionary that is
passed on to the remote end.
As some of the options, such as firefox_profile and options.profile are mutually exclusive, precedence is
given from how specific the setting is. capabilities is the least specific keyword argument, followed by
options, followed by firefox_binary and firefox_profile.
In practice this means that if firefox_profile and options.profile are both set, the selected profile instance will
always come from the most specific variable. In this case that would be firefox_profile. This will result in
options.profile to be ignored because it is considered a less specific setting than the top-level firefox_profile
keyword argument. Similarily, if you had specified a capabilities[“moz:firefoxOptions”][“profile”]
Base64 string, this would rank below options.profile.
7.12. Firefox WebDriver 49
Selenium Python Bindings, Release 2
Parameters
• firefox_profile – Instance of FirefoxProfile object or a string. If undefined,
a fresh profile will be created in a temporary location on the system.
• firefox_binary – Instance of FirefoxBinary or full path to the Firefox binary.
If undefined, the system default Firefox installation will be used.
• timeout – Time to wait for Firefox to launch when using the extension connection.
• capabilities – Dictionary of desired capabilities.
• proxy – The proxy settings to us when communicating with Firefox via the extension
connection.
• executable_path – Full path to override which geckodriver binary to use for Firefox
47.0.1 and greater, which defaults to picking up the binary from the system path.
• options – Instance of options.Options.
• service_log_path – Where to log information from the driver.
• firefox_options – Deprecated argument for options
• service_args – List of args to pass to the driver service
• desired_capabilities – alias of capabilities. In future versions of this library, this
will replace ‘capabilities’. This will make the signature consistent with RemoteWebDriver.
• log_path – Deprecated argument for service_log_path
• keep_alive – Whether to configure remote_connection.RemoteConnection to use
HTTP keep-alive.
context(**kwds)
Sets the context that Selenium commands are running in using a with statement. The state of the context
on the server is saved before entering the block, and restored upon exiting it.
Parameters context – Context, may be one of the class properties CONTEXT_CHROME or
CONTEXT_CONTENT.
Usage example:
with selenium.context(selenium.CONTEXT_CHROME):
# chrome scope
... do stuff ...
install_addon(path, temporary=None)
Installs Firefox addon.
Returns identifier of installed addon. This identifier can later be used to uninstall addon.
Parameters path – Absolute path to the addon that will be installed.
Usage driver.install_addon(‘/path/to/firebug.xpi’)
quit()
Quits the driver and close every associated window.
set_context(context)
uninstall_addon(identifier)
Uninstalls Firefox addon using its identifier.
Usage driver.uninstall_addon(‘addon@foo.com’)
50 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
CONTEXT_CHROME = 'chrome'
CONTEXT_CONTENT = 'content'
NATIVE_EVENTS_ALLOWED = True
firefox_profile
7.13 Firefox WebDriver Options
class selenium.webdriver.firefox.options.Log
Bases: object
__init__()
x.__init__(...) initializes x; see help(type(x)) for signature
to_capabilities()
class selenium.webdriver.firefox.options.Options
Bases: object
__init__()
x.__init__(...) initializes x; see help(type(x)) for signature
add_argument(argument)
Add argument to be used for the browser process.
set_capability(name, value)
Sets a capability.
set_headless(headless=True)
Deprecated, options.headless = True
set_preference(name, value)
Sets a preference.
to_capabilities()
Marshals the Firefox options to a moz:firefoxOptions object.
KEY = 'moz:firefoxOptions'
accept_insecure_certs
arguments
Returns a list of browser process arguments.
binary
Returns the FirefoxBinary instance
binary_location
Returns the location of the binary.
capabilities
headless
Returns whether or not the headless argument is set
preferences
Returns a dict of preferences.
profile
Returns the Firefox profile to use.
7.13. Firefox WebDriver Options 51
Selenium Python Bindings, Release 2
proxy
returns Proxy if set otherwise None.
7.14 Firefox WebDriver Profile
exception selenium.webdriver.firefox.firefox_profile.AddonFormatError
Bases: exceptions.Exception
Exception for not well-formed add-on manifest files
class selenium.webdriver.firefox.firefox_profile.FirefoxProfile(profile_directory=None)
Bases: object
__init__(profile_directory=None)
Initialises a new instance of a Firefox Profile
Args
• profile_directory: Directory of profile that you want to use. If a directory is passed in it
will be cloned and the cloned directory will be used by the driver when instantiated. This
defaults to None and will create a new directory when object is created.
add_extension(extension=’webdriver.xpi’)
set_preference(key, value)
sets the preference that we want in the profile.
set_proxy(proxy)
update_preferences()
ANONYMOUS_PROFILE_NAME = 'WEBDRIVER_ANONYMOUS_PROFILE'
DEFAULT_PREFERENCES = None
accept_untrusted_certs
assume_untrusted_cert_issuer
encoded
A zipped, base64 encoded string of profile directory for use with remote WebDriver JSON wire protocol
native_events_enabled
path
Gets the profile directory that is currently being used
port
Gets the port that WebDriver is working on
7.15 Firefox WebDriver Binary
class selenium.webdriver.firefox.firefox_binary.FirefoxBinary(firefox_path=None,
log_file=None)
Bases: object
__init__(firefox_path=None, log_file=None)
Creates a new instance of Firefox binary.
Args
52 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
• firefox_path - Path to the Firefox executable. By default, it will be detected from the
standard locations.
• log_file - A file object to redirect the firefox process output to. It can be sys.stdout.
Please note that with parallel run the output won’t be synchronous. By default, it will
be redirected to /dev/null.
add_command_line_options(*args)
kill()
Kill the browser.
This is useful when the browser is stuck.
launch_browser(profile, timeout=30)
Launches the browser for the given profile name. It is assumed the profile already exists.
which(fname)
Returns the fully qualified path by searching Path of the given name
NO_FOCUS_LIBRARY_NAME = 'x_ignore_nofocus.so'
7.16 Firefox WebDriver Extension Connection
exception selenium.webdriver.firefox.extension_connection.ExtensionConnectionError
Bases: exceptions.Exception
An internal error occurred int the extension.
Might be caused by bad input or bugs in webdriver
class selenium.webdriver.firefox.extension_connection.ExtensionConnection(host,
fire-
fox_profile,
fire-
fox_binary=None,
time-
out=30)
Bases: selenium.webdriver.remote.remote_connection.RemoteConnection
__init__(host, firefox_profile, firefox_binary=None, timeout=30)
x.__init__(...) initializes x; see help(type(x)) for signature
connect()
Connects to the extension and retrieves the session id.
classmethod connect_and_quit()
Connects to an running browser and quit immediately.
classmethod is_connectable()
Trys to connect to the extension but do not retrieve context.
quit(sessionId=None)
7.16. Firefox WebDriver Extension Connection 53
Selenium Python Bindings, Release 2
7.17 Chrome WebDriver
class selenium.webdriver.chrome.webdriver.WebDriver(executable_path=’chromedriver’,
port=0, options=None,
service_args=None, de-
sired_capabilities=None,
service_log_path=None,
chrome_options=None,
keep_alive=True)
Bases: selenium.webdriver.remote.webdriver.WebDriver
Controls the ChromeDriver and allows you to drive the browser.
You will need to download the ChromeDriver executable from http://chromedriver.storage.googleapis.com/
index.html
__init__(executable_path=’chromedriver’, port=0, options=None, service_args=None,
desired_capabilities=None, service_log_path=None, chrome_options=None,
keep_alive=True)
Creates a new instance of the chrome driver.
Starts the service and then creates new instance of chrome driver.
Args
• executable_path - path to the executable. If the default is used it assumes the executable is
in the $PATH
• port - port you would like the service to run, if left as 0, a free port will be found.
• options - this takes an instance of ChromeOptions
• service_args - List of args to pass to the driver service
• desired_capabilities - Dictionary object with non-browser specific capabilities only, such
as “proxy” or “loggingPref”.
• service_log_path - Where to log information from the driver.
• chrome_options - Deprecated argument for options
• keep_alive - Whether to configure ChromeRemoteConnection to use HTTP keep-alive.
create_options()
execute_cdp_cmd(cmd, cmd_args)
Execute Chrome Devtools Protocol command and get returned result
The command and command args should follow chrome devtools protocol domains/commands, refer to
link https://chromedevtools.github.io/devtools-protocol/
Args
• cmd: A str, command name
• cmd_args: A dict, command args. empty dict {} if there is no command args
Usage driver.execute_cdp_cmd(‘Network.getResponseBody’, {‘requestId’: requestId})
Returns A dict, empty dict {} if there is no result to return. For example to getResponseBody:
{‘base64Encoded’: False, ‘body’: ‘response body string’}
get_network_conditions()
Gets Chrome network emulation settings.
54 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
Returns A dict. For example:
{‘latency’: 4, ‘download_throughput’: 2, ‘upload_throughput’: 2, ‘offline’: False}
launch_app(id)
Launches Chrome app specified by id.
quit()
Closes the browser and shuts down the ChromeDriver executable that is started when starting the
ChromeDriver
set_network_conditions(**network_conditions)
Sets Chrome network emulation settings.
Args
• network_conditions: A dict with conditions specification.
Usage
driver.set_network_conditions( offline=False, latency=5, # additional latency (ms) down-
load_throughput=500 * 1024, # maximal throughput upload_throughput=500 * 1024) #
maximal throughput
Note: ‘throughput’ can be used to set both (for download and upload).
7.18 Chrome WebDriver Options
class selenium.webdriver.chrome.options.Options
Bases: object
__init__()
x.__init__(...) initializes x; see help(type(x)) for signature
add_argument(argument)
Adds an argument to the list
Args
• Sets the arguments
add_encoded_extension(extension)
Adds Base64 encoded string with extension data to a list that will be used to extract it to the ChromeDriver
Args
• extension: Base64 encoded string with extension data
add_experimental_option(name, value)
Adds an experimental option which is passed to chrome.
Args: name: The experimental option name. value: The option value.
add_extension(extension)
Adds the path to the extension to a list that will be used to extract it to the ChromeDriver
Args
• extension: path to the *.crx file
set_capability(name, value)
Sets a capability.
7.18. Chrome WebDriver Options 55
Selenium Python Bindings, Release 2
set_headless(headless=True)
Deprecated, options.headless = True
to_capabilities()
Creates a capabilities with all the options that have been set and
returns a dictionary with everything
KEY = 'goog:chromeOptions'
arguments
Returns a list of arguments needed for the browser
binary_location
Returns the location of the binary otherwise an empty string
capabilities
debugger_address
Returns the address of the remote devtools instance
experimental_options
Returns a dictionary of experimental options for chrome.
extensions
Returns a list of encoded extensions that will be loaded into chrome
headless
Returns whether or not the headless argument is set
7.19 Chrome WebDriver Service
class selenium.webdriver.chrome.service.Service(executable_path, port=0, ser-
vice_args=None, log_path=None,
env=None)
Bases: selenium.webdriver.common.service.Service
Object that manages the starting and stopping of the ChromeDriver
__init__(executable_path, port=0, service_args=None, log_path=None, env=None)
Creates a new instance of the Service
Args
• executable_path : Path to the ChromeDriver
• port : Port the service is running on
• service_args : List of args to pass to the chromedriver service
• log_path : Path for the chromedriver service to log to
command_line_args()
7.20 Remote WebDriver
The WebDriver implementation.
56 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
class selenium.webdriver.remote.webdriver.WebDriver(command_executor=’http://127.0.0.1:4444/wd/hub’,
desired_capabilities=None,
browser_profile=None,
proxy=None, keep_alive=False,
file_detector=None, op-
tions=None)
Bases: object
Controls a browser by sending commands to a remote server. This server is expected to be running the Web-
Driver wire protocol as defined at https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
Attributes
• session_id - String ID of the browser session started and controlled by this WebDriver.
• capabilities - Dictionaty of effective capabilities of this browser session as returned
by the remote server. See https://github.com/SeleniumHQ/selenium/wiki/
DesiredCapabilities
• command_executor - remote_connection.RemoteConnection object used to execute com-
mands.
• error_handler - errorhandler.ErrorHandler object used to handle errors.
__init__(command_executor=’http://127.0.0.1:4444/wd/hub’, desired_capabilities=None,
browser_profile=None, proxy=None, keep_alive=False, file_detector=None, op-
tions=None)
Create a new driver that will issue commands using the wire protocol.
Args
• command_executor - Either a string representing URL of the remote server or a custom
remote_connection.RemoteConnection object. Defaults to ‘http://127.0.0.1:
4444/wd/hub’.
• desired_capabilities - A dictionary of capabilities to request when starting the
browser session. Required parameter.
• browser_profile - A selenium.webdriver.firefox.firefox_profile.FirefoxProfile object.
Only used if Firefox is requested. Optional.
• proxy - A selenium.webdriver.common.proxy.Proxy object. The browser session will
be started with given proxy settings, if possible. Optional.
• keep_alive - Whether to configure remote_connection.RemoteConnection to use
HTTP keep-alive. Defaults to False.
• file_detector - Pass custom file detector object during instantiation. If None, then
default LocalFileDetector() will be used.
• options - instance of a driver options.Options class
add_cookie(cookie_dict)
Adds a cookie to your current session.
Args
• cookie_dict: A dictionary object, with required keys - “name” and “value”; optional
keys - “path”, “domain”, “secure”, “expiry”
Usage: driver.add_cookie({‘name’ : ‘foo’, ‘value’ : ‘bar’}) driver.add_cookie({‘name’ : ‘foo’, ‘value’ :
‘bar’, ‘path’ : ‘/’}) driver.add_cookie({‘name’ : ‘foo’, ‘value’ : ‘bar’, ‘path’ : ‘/’, ‘secure’:True})
7.20. Remote WebDriver 57
Selenium Python Bindings, Release 2
back()
Goes one step backward in the browser history.
Usage driver.back()
close()
Closes the current window.
Usage driver.close()
create_web_element(element_id)
Creates a web element with the specified element_id.
delete_all_cookies()
Delete all cookies in the scope of the session.
Usage driver.delete_all_cookies()
delete_cookie(name)
Deletes a single cookie with the given name.
Usage driver.delete_cookie(‘my_cookie’)
execute(driver_command, params=None)
Sends a command to be executed by a command.CommandExecutor.
Args
• driver_command: The name of the command to execute as a string.
• params: A dictionary of named parameters to send with the command.
Returns The command’s JSON response loaded into a dictionary object.
execute_async_script(script, *args)
Asynchronously Executes JavaScript in the current window/frame.
Args
• script: The JavaScript to execute.
• *args: Any applicable arguments for your JavaScript.
Usage script = “var callback = arguments[arguments.length - 1];
” “window.setTimeout(function(){ callback(‘timeout’) }, 3000);”
driver.execute_async_script(script)
execute_script(script, *args)
Synchronously Executes JavaScript in the current window/frame.
Args
• script: The JavaScript to execute.
• *args: Any applicable arguments for your JavaScript.
Usage driver.execute_script(‘return document.title;’)
file_detector_context(**kwds)
Overrides the current file detector (if necessary) in limited context. Ensures the original file detector is set
afterwards.
Example:
with webdriver.file_detector_context(UselessFileDetector): someinput.send_keys(‘/etc/hosts’)
Args
58 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
• file_detector_class - Class of the desired file detector. If the class is different from
the current file_detector, then the class is instantiated with args and kwargs and used as
a file detector during the duration of the context manager.
• args - Optional arguments that get passed to the file detector class during
instantiation.
• kwargs - Keyword arguments, passed the same way as args.
find_element(by=’id’, value=None)
Find an element given a By strategy and locator. Prefer the find_element_by_* methods when possible.
Usage element = driver.find_element(By.ID, ‘foo’)
Return type WebElement
find_element_by_class_name(name)
Finds an element by class name.
Args
• name: The class name of the element to find.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_class_name(‘foo’)
find_element_by_css_selector(css_selector)
Finds an element by css selector.
Args
• css_selector - CSS selector string, ex: ‘a.nav#home’
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_css_selector(‘#foo’)
find_element_by_id(id_)
Finds an element by id.
Args
• id_ - The id of the element to be found.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_id(‘foo’)
7.20. Remote WebDriver 59
Selenium Python Bindings, Release 2
find_element_by_link_text(link_text)
Finds an element by link text.
Args
• link_text: The text of the element to be found.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_link_text(‘Sign In’)
find_element_by_name(name)
Finds an element by name.
Args
• name: The name of the element to find.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_name(‘foo’)
find_element_by_partial_link_text(link_text)
Finds an element by a partial match of its link text.
Args
• link_text: The text of the element to partially match on.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_partial_link_text(‘Sign’)
find_element_by_tag_name(name)
Finds an element by tag name.
Args
• name - name of html tag (eg: h1, a, span)
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_tag_name(‘h1’)
find_element_by_xpath(xpath)
Finds an element by xpath.
60 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
Args
• xpath - The xpath locator of the element to find.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = driver.find_element_by_xpath(‘//div/td[1]’)
find_elements(by=’id’, value=None)
Find elements given a By strategy and locator. Prefer the find_elements_by_* methods when possible.
Usage elements = driver.find_elements(By.CLASS_NAME, ‘foo’)
Return type list of WebElement
find_elements_by_class_name(name)
Finds elements by class name.
Args
• name: The class name of the elements to find.
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = driver.find_elements_by_class_name(‘foo’)
find_elements_by_css_selector(css_selector)
Finds elements by css selector.
Args
• css_selector - CSS selector string, ex: ‘a.nav#home’
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = driver.find_elements_by_css_selector(‘.foo’)
find_elements_by_id(id_)
Finds multiple elements by id.
Args
• id_ - The id of the elements to be found.
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = driver.find_elements_by_id(‘foo’)
find_elements_by_link_text(text)
Finds elements by link text.
Args
• link_text: The text of the elements to be found.
Returns
• list of webelement - a list with elements if any was found. an empty list if not
7.20. Remote WebDriver 61
Selenium Python Bindings, Release 2
Usage elements = driver.find_elements_by_link_text(‘Sign In’)
find_elements_by_name(name)
Finds elements by name.
Args
• name: The name of the elements to find.
Returns
• list of webelement - a list with elements if any was found. an empty list if not
Usage elements = driver.find_elements_by_name(‘foo’)
find_elements_by_partial_link_text(link_text)
Finds elements by a partial match of their link text.
Args
• link_text: The text of the element to partial match on.
Returns
• list of webelement - a list with elements if any was found. an empty list if not
Usage elements = driver.find_elements_by_partial_link_text(‘Sign’)
find_elements_by_tag_name(name)
Finds elements by tag name.
Args
• name - name of html tag (eg: h1, a, span)
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = driver.find_elements_by_tag_name(‘h1’)
find_elements_by_xpath(xpath)
Finds multiple elements by xpath.
Args
• xpath - The xpath locator of the elements to be found.
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = driver.find_elements_by_xpath(“//div[contains(@class, ‘foo’)]”)
forward()
Goes one step forward in the browser history.
Usage driver.forward()
fullscreen_window()
Invokes the window manager-specific ‘full screen’ operation
get(url)
Loads a web page in the current browser session.
get_cookie(name)
Get a single cookie by name. Returns the cookie if found, None if not.
Usage driver.get_cookie(‘my_cookie’)
62 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
get_cookies()
Returns a set of dictionaries, corresponding to cookies visible in the current session.
Usage driver.get_cookies()
get_log(log_type)
Gets the log for a given log type
Args
• log_type: type of log that which will be returned
Usage driver.get_log(‘browser’) driver.get_log(‘driver’) driver.get_log(‘client’)
driver.get_log(‘server’)
get_screenshot_as_base64()
Gets the screenshot of the current window as a base64 encoded string which is useful in embedded
images in HTML.
Usage driver.get_screenshot_as_base64()
get_screenshot_as_file(filename)
Saves a screenshot of the current window to a PNG image file. Returns False if there is any IOError,
else returns True. Use full paths in your filename.
Args
• filename: The full path you wish to save your screenshot to. This should end with a .png
extension.
Usage driver.get_screenshot_as_file(‘/Screenshots/foo.png’)
get_screenshot_as_png()
Gets the screenshot of the current window as a binary data.
Usage driver.get_screenshot_as_png()
get_window_position(windowHandle=’current’)
Gets the x,y position of the current window.
Usage driver.get_window_position()
get_window_rect()
Gets the x, y coordinates of the window as well as height and width of the current window.
Usage driver.get_window_rect()
get_window_size(windowHandle=’current’)
Gets the width and height of the current window.
Usage driver.get_window_size()
implicitly_wait(time_to_wait)
Sets a sticky timeout to implicitly wait for an element to be found, or a command to complete. This
method only needs to be called one time per session. To set the timeout for calls to exe-
cute_async_script, see set_script_timeout.
Args
• time_to_wait: Amount of time to wait (in seconds)
7.20. Remote WebDriver 63
Selenium Python Bindings, Release 2
Usage driver.implicitly_wait(30)
maximize_window()
Maximizes the current window that webdriver is using
minimize_window()
Invokes the window manager-specific ‘minimize’ operation
quit()
Quits the driver and closes every associated window.
Usage driver.quit()
refresh()
Refreshes the current page.
Usage driver.refresh()
save_screenshot(filename)
Saves a screenshot of the current window to a PNG image file. Returns False if there is any IOError,
else returns True. Use full paths in your filename.
Args
• filename: The full path you wish to save your screenshot to. This should end with a .png
extension.
Usage driver.save_screenshot(‘/Screenshots/foo.png’)
set_page_load_timeout(time_to_wait)
Set the amount of time to wait for a page load to complete before throwing an error.
Args
• time_to_wait: The amount of time to wait
Usage driver.set_page_load_timeout(30)
set_script_timeout(time_to_wait)
Set the amount of time that the script should wait during an execute_async_script call before throw-
ing an error.
Args
• time_to_wait: The amount of time to wait (in seconds)
Usage driver.set_script_timeout(30)
set_window_position(x, y, windowHandle=’current’)
Sets the x,y position of the current window. (window.moveTo)
Args
• x: the x-coordinate in pixels to set the window position
• y: the y-coordinate in pixels to set the window position
Usage driver.set_window_position(0,0)
set_window_rect(x=None, y=None, width=None, height=None)
Sets the x, y coordinates of the window as well as height and width of the current window.
64 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
Usage driver.set_window_rect(x=10, y=10) driver.set_window_rect(width=100, height=200)
driver.set_window_rect(x=10, y=10, width=100, height=200)
set_window_size(width, height, windowHandle=’current’)
Sets the width and height of the current window. (window.resizeTo)
Args
• width: the width in pixels to set the window to
• height: the height in pixels to set the window to
Usage driver.set_window_size(800,600)
start_client()
Called before starting a new session. This method may be overridden to define custom startup behavior.
start_session(capabilities, browser_profile=None)
Creates a new session with the desired capabilities.
Args
• browser_name - The name of the browser to request.
• version - Which browser version to request.
• platform - Which platform to request the browser on.
• javascript_enabled - Whether the new session should support JavaScript.
• browser_profile - A selenium.webdriver.firefox.firefox_profile.FirefoxProfile object. Only
used if Firefox is requested.
stop_client()
Called after executing a quit command. This method may be overridden to define custom shutdown be-
havior.
switch_to_active_element()
Deprecated use driver.switch_to.active_element
switch_to_alert()
Deprecated use driver.switch_to.alert
switch_to_default_content()
Deprecated use driver.switch_to.default_content
switch_to_frame(frame_reference)
Deprecated use driver.switch_to.frame
switch_to_window(window_name)
Deprecated use driver.switch_to.window
application_cache
Returns a ApplicationCache Object to interact with the browser app cache
current_url
Gets the URL of the current page.
Usage driver.current_url
current_window_handle
Returns the handle of the current window.
Usage driver.current_window_handle
7.20. Remote WebDriver 65
Selenium Python Bindings, Release 2
desired_capabilities
returns the drivers current desired capabilities being used
file_detector
log_types
Gets a list of the available log types
Usage driver.log_types
mobile
name
Returns the name of the underlying browser for this instance.
Usage name = driver.name
orientation
Gets the current orientation of the device
Usage orientation = driver.orientation
page_source
Gets the source of the current page.
Usage driver.page_source
switch_to
Returns
• SwitchTo: an object containing all options to switch focus into
Usage element = driver.switch_to.active_element alert = driver.switch_to.alert
driver.switch_to.default_content() driver.switch_to.frame(‘frame_name’)
driver.switch_to.frame(1) driver.switch_to.frame(driver.find_elements_by_tag_name(“iframe”)[0])
driver.switch_to.parent_frame() driver.switch_to.window(‘main’)
title
Returns the title of the current page.
Usage title = driver.title
window_handles
Returns the handles of all windows within the current session.
Usage driver.window_handles
7.21 Remote WebDriver WebElement
class selenium.webdriver.remote.webelement.WebElement(parent, id_, w3c=False)
Bases: object
Represents a DOM element.
Generally, all interesting operations that interact with a document will be performed through this interface.
All method calls will do a freshness check to ensure that the element reference is still valid. This es-
sentially determines whether or not the element is still attached to the DOM. If this test fails, then an
StaleElementReferenceException is thrown, and all future calls to this instance will fail.
__init__(parent, id_, w3c=False)
x.__init__(...) initializes x; see help(type(x)) for signature
66 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
clear()
Clears the text if it’s a text entry element.
click()
Clicks the element.
find_element(by=’id’, value=None)
Find an element given a By strategy and locator. Prefer the find_element_by_* methods when possible.
Usage element = element.find_element(By.ID, ‘foo’)
Return type WebElement
find_element_by_class_name(name)
Finds element within this element’s children by class name.
Args
• name: The class name of the element to find.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = element.find_element_by_class_name(‘foo’)
find_element_by_css_selector(css_selector)
Finds element within this element’s children by CSS selector.
Args
• css_selector - CSS selector string, ex: ‘a.nav#home’
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = element.find_element_by_css_selector(‘#foo’)
find_element_by_id(id_)
Finds element within this element’s children by ID.
Args
• id_ - ID of child element to locate.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage foo_element = element.find_element_by_id(‘foo’)
find_element_by_link_text(link_text)
Finds element within this element’s children by visible link text.
Args
7.21. Remote WebDriver WebElement 67
Selenium Python Bindings, Release 2
• link_text - Link text string to search for.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = element.find_element_by_link_text(‘Sign In’)
find_element_by_name(name)
Finds element within this element’s children by name.
Args
• name - name property of the element to find.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = element.find_element_by_name(‘foo’)
find_element_by_partial_link_text(link_text)
Finds element within this element’s children by partially visible link text.
Args
• link_text: The text of the element to partially match on.
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = element.find_element_by_partial_link_text(‘Sign’)
find_element_by_tag_name(name)
Finds element within this element’s children by tag name.
Args
• name - name of html tag (eg: h1, a, span)
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = element.find_element_by_tag_name(‘h1’)
find_element_by_xpath(xpath)
Finds element by xpath.
Args
• xpath - xpath of element to locate. “//input[@class=’myelement’]”
68 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
Note: The base path will be relative to this element’s location.
This will select the first link under this element.
myelement.find_element_by_xpath(".//a")
However, this will select the first link on the page.
myelement.find_element_by_xpath("//a")
Returns
• WebElement - the element if it was found
Raises
• NoSuchElementException - if the element wasn’t found
Usage element = element.find_element_by_xpath(‘//div/td[1]’)
find_elements(by=’id’, value=None)
Find elements given a By strategy and locator. Prefer the find_elements_by_* methods when possible.
Usage element = element.find_elements(By.CLASS_NAME, ‘foo’)
Return type list of WebElement
find_elements_by_class_name(name)
Finds a list of elements within this element’s children by class name.
Args
• name: The class name of the elements to find.
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = element.find_elements_by_class_name(‘foo’)
find_elements_by_css_selector(css_selector)
Finds a list of elements within this element’s children by CSS selector.
Args
• css_selector - CSS selector string, ex: ‘a.nav#home’
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = element.find_elements_by_css_selector(‘.foo’)
find_elements_by_id(id_)
Finds a list of elements within this element’s children by ID. Will return a list of webelements if found, or
an empty list if not.
Args
• id_ - Id of child element to find.
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = element.find_elements_by_id(‘foo’)
7.21. Remote WebDriver WebElement 69
Selenium Python Bindings, Release 2
find_elements_by_link_text(link_text)
Finds a list of elements within this element’s children by visible link text.
Args
• link_text - Link text string to search for.
Returns
• list of webelement - a list with elements if any was found. an empty list if not
Usage elements = element.find_elements_by_link_text(‘Sign In’)
find_elements_by_name(name)
Finds a list of elements within this element’s children by name.
Args
• name - name property to search for.
Returns
• list of webelement - a list with elements if any was found. an empty list if not
Usage elements = element.find_elements_by_name(‘foo’)
find_elements_by_partial_link_text(link_text)
Finds a list of elements within this element’s children by link text.
Args
• link_text: The text of the element to partial match on.
Returns
• list of webelement - a list with elements if any was found. an empty list if not
Usage elements = element.find_elements_by_partial_link_text(‘Sign’)
find_elements_by_tag_name(name)
Finds a list of elements within this element’s children by tag name.
Args
• name - name of html tag (eg: h1, a, span)
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = element.find_elements_by_tag_name(‘h1’)
find_elements_by_xpath(xpath)
Finds elements within the element by xpath.
Args
• xpath - xpath locator string.
Note: The base path will be relative to this element’s location.
This will select all links under this element.
myelement.find_elements_by_xpath(".//a")
However, this will select all links in the page itself.
70 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
myelement.find_elements_by_xpath("//a")
Returns
• list of WebElement - a list with elements if any was found. An empty list if not
Usage elements = element.find_elements_by_xpath(“//div[contains(@class, ‘foo’)]”)
get_attribute(name)
Gets the given attribute or property of the element.
This method will first try to return the value of a property with the given name. If a property with that
name doesn’t exist, it returns the value of the attribute with the same name. If there’s no attribute with that
name, None is returned.
Values which are considered truthy, that is equals “true” or “false”, are returned as booleans. All other
non-None values are returned as strings. For attributes or properties which do not exist, None is returned.
Args
• name - Name of the attribute/property to retrieve.
Example:
# Check if the "active" CSS class is applied to an element.
is_active = "active" in target_element.get_attribute("class")
get_property(name)
Gets the given property of the element.
Args
• name - Name of the property to retrieve.
Example:
text_length = target_element.get_property("text_length")
is_displayed()
Whether the element is visible to a user.
is_enabled()
Returns whether the element is enabled.
is_selected()
Returns whether the element is selected.
Can be used to check if a checkbox or radio button is selected.
screenshot(filename)
Saves a screenshot of the current element to a PNG image file. Returns False if there is any IOError,
else returns True. Use full paths in your filename.
Args
• filename: The full path you wish to save your screenshot to. This should end with a .png
extension.
Usage element.screenshot(‘/Screenshots/foo.png’)
7.21. Remote WebDriver WebElement 71
Selenium Python Bindings, Release 2
send_keys(*value)
Simulates typing into the element.
Args
• value - A string for typing, or setting form fields. For setting file inputs, this could be a
local file path.
Use this to send simple key events or to fill out form fields:
form_textfield = driver.find_element_by_name('username')
form_textfield.send_keys("admin")
This can also be used to set file inputs.
file_input = driver.find_element_by_name('profilePic')
file_input.send_keys("path/to/profilepic.gif")
# Generally it's better to wrap the file path in one of the methods
# in os.path to return the actual path to support cross OS testing.
# file_input.send_keys(os.path.abspath("path/to/profilepic.gif"))
submit()
Submits a form.
value_of_css_property(property_name)
The value of a CSS property.
id
Internal ID used by selenium.
This is mainly for internal use. Simple use cases such as checking if 2 webelements refer to the same
element, can be done using ==:
if element1 == element2:
print("These 2 are equal")
location
The location of the element in the renderable canvas.
location_once_scrolled_into_view
THIS PROPERTY MAY CHANGE WITHOUT WARNING. Use this to discover where on the screen an
element is so that we can click it. This method should cause the element to be scrolled into view.
Returns the top lefthand corner location on the screen, or None if the element is not visible.
parent
Internal reference to the WebDriver instance this element was found from.
rect
A dictionary with the size and location of the element.
screenshot_as_base64
Gets the screenshot of the current element as a base64 encoded string.
Usage img_b64 = element.screenshot_as_base64
screenshot_as_png
Gets the screenshot of the current element as a binary data.
Usage element_png = element.screenshot_as_png
size
The size of the element.
72 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
tag_name
This element’s tagName property.
text
The text of the element.
7.22 Remote WebDriver Command
class selenium.webdriver.remote.command.Command
Bases: object
Defines constants for the standard WebDriver commands.
While these constants have no meaning in and of themselves, they are used to marshal commands through a
service that implements WebDriver’s remote wire protocol:
https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol
ACCEPT_ALERT = 'acceptAlert'
ADD_COOKIE = 'addCookie'
CLEAR_APP_CACHE = 'clearAppCache'
CLEAR_ELEMENT = 'clearElement'
CLEAR_LOCAL_STORAGE = 'clearLocalStorage'
CLEAR_SESSION_STORAGE = 'clearSessionStorage'
CLICK = 'mouseClick'
CLICK_ELEMENT = 'clickElement'
CLOSE = 'close'
CONTEXT_HANDLES = 'getContextHandles'
CURRENT_CONTEXT_HANDLE = 'getCurrentContextHandle'
DELETE_ALL_COOKIES = 'deleteAllCookies'
DELETE_COOKIE = 'deleteCookie'
DELETE_SESSION = 'deleteSession'
DISMISS_ALERT = 'dismissAlert'
DOUBLE_CLICK = 'mouseDoubleClick'
DOUBLE_TAP = 'touchDoubleTap'
ELEMENT_SCREENSHOT = 'elementScreenshot'
EXECUTE_ASYNC_SCRIPT = 'executeAsyncScript'
EXECUTE_SCRIPT = 'executeScript'
EXECUTE_SQL = 'executeSql'
FIND_CHILD_ELEMENT = 'findChildElement'
FIND_CHILD_ELEMENTS = 'findChildElements'
FIND_ELEMENT = 'findElement'
FIND_ELEMENTS = 'findElements'
7.22. Remote WebDriver Command 73
Selenium Python Bindings, Release 2
FLICK = 'touchFlick'
FULLSCREEN_WINDOW = 'fullscreenWindow'
GET = 'get'
GET_ACTIVE_ELEMENT = 'getActiveElement'
GET_ALERT_TEXT = 'getAlertText'
GET_ALL_COOKIES = 'getCookies'
GET_ALL_SESSIONS = 'getAllSessions'
GET_APP_CACHE = 'getAppCache'
GET_APP_CACHE_STATUS = 'getAppCacheStatus'
GET_AVAILABLE_LOG_TYPES = 'getAvailableLogTypes'
GET_COOKIE = 'getCookie'
GET_CURRENT_URL = 'getCurrentUrl'
GET_CURRENT_WINDOW_HANDLE = 'getCurrentWindowHandle'
GET_ELEMENT_ATTRIBUTE = 'getElementAttribute'
GET_ELEMENT_LOCATION = 'getElementLocation'
GET_ELEMENT_LOCATION_ONCE_SCROLLED_INTO_VIEW = 'getElementLocationOnceScrolledIntoView'
GET_ELEMENT_PROPERTY = 'getElementProperty'
GET_ELEMENT_RECT = 'getElementRect'
GET_ELEMENT_SIZE = 'getElementSize'
GET_ELEMENT_TAG_NAME = 'getElementTagName'
GET_ELEMENT_TEXT = 'getElementText'
GET_ELEMENT_VALUE = 'getElementValue'
GET_ELEMENT_VALUE_OF_CSS_PROPERTY = 'getElementValueOfCssProperty'
GET_LOCAL_STORAGE_ITEM = 'getLocalStorageItem'
GET_LOCAL_STORAGE_KEYS = 'getLocalStorageKeys'
GET_LOCAL_STORAGE_SIZE = 'getLocalStorageSize'
GET_LOCATION = 'getLocation'
GET_LOG = 'getLog'
GET_NETWORK_CONNECTION = 'getNetworkConnection'
GET_PAGE_SOURCE = 'getPageSource'
GET_SCREEN_ORIENTATION = 'getScreenOrientation'
GET_SESSION_STORAGE_ITEM = 'getSessionStorageItem'
GET_SESSION_STORAGE_KEYS = 'getSessionStorageKeys'
GET_SESSION_STORAGE_SIZE = 'getSessionStorageSize'
GET_TITLE = 'getTitle'
GET_WINDOW_HANDLES = 'getWindowHandles'
74 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
GET_WINDOW_POSITION = 'getWindowPosition'
GET_WINDOW_RECT = 'getWindowRect'
GET_WINDOW_SIZE = 'getWindowSize'
GO_BACK = 'goBack'
GO_FORWARD = 'goForward'
IMPLICIT_WAIT = 'implicitlyWait'
IS_ELEMENT_DISPLAYED = 'isElementDisplayed'
IS_ELEMENT_ENABLED = 'isElementEnabled'
IS_ELEMENT_SELECTED = 'isElementSelected'
LONG_PRESS = 'touchLongPress'
MAXIMIZE_WINDOW = 'windowMaximize'
MINIMIZE_WINDOW = 'minimizeWindow'
MOUSE_DOWN = 'mouseButtonDown'
MOUSE_UP = 'mouseButtonUp'
MOVE_TO = 'mouseMoveTo'
NEW_SESSION = 'newSession'
QUIT = 'quit'
REFRESH = 'refresh'
REMOVE_LOCAL_STORAGE_ITEM = 'removeLocalStorageItem'
REMOVE_SESSION_STORAGE_ITEM = 'removeSessionStorageItem'
SCREENSHOT = 'screenshot'
SEND_KEYS_TO_ACTIVE_ELEMENT = 'sendKeysToActiveElement'
SEND_KEYS_TO_ELEMENT = 'sendKeysToElement'
SET_ALERT_CREDENTIALS = 'setAlertCredentials'
SET_ALERT_VALUE = 'setAlertValue'
SET_ELEMENT_SELECTED = 'setElementSelected'
SET_LOCAL_STORAGE_ITEM = 'setLocalStorageItem'
SET_LOCATION = 'setLocation'
SET_NETWORK_CONNECTION = 'setNetworkConnection'
SET_SCREEN_ORIENTATION = 'setScreenOrientation'
SET_SCRIPT_TIMEOUT = 'setScriptTimeout'
SET_SESSION_STORAGE_ITEM = 'setSessionStorageItem'
SET_TIMEOUTS = 'setTimeouts'
SET_WINDOW_POSITION = 'setWindowPosition'
SET_WINDOW_RECT = 'setWindowRect'
SET_WINDOW_SIZE = 'setWindowSize'
7.22. Remote WebDriver Command 75
Selenium Python Bindings, Release 2
SINGLE_TAP = 'touchSingleTap'
STATUS = 'status'
SUBMIT_ELEMENT = 'submitElement'
SWITCH_TO_CONTEXT = 'switchToContext'
SWITCH_TO_FRAME = 'switchToFrame'
SWITCH_TO_PARENT_FRAME = 'switchToParentFrame'
SWITCH_TO_WINDOW = 'switchToWindow'
TOUCH_DOWN = 'touchDown'
TOUCH_MOVE = 'touchMove'
TOUCH_SCROLL = 'touchScroll'
TOUCH_UP = 'touchUp'
UPLOAD_FILE = 'uploadFile'
W3C_ACCEPT_ALERT = 'w3cAcceptAlert'
W3C_ACTIONS = 'actions'
W3C_CLEAR_ACTIONS = 'clearActionState'
W3C_DISMISS_ALERT = 'w3cDismissAlert'
W3C_EXECUTE_SCRIPT = 'w3cExecuteScript'
W3C_EXECUTE_SCRIPT_ASYNC = 'w3cExecuteScriptAsync'
W3C_GET_ACTIVE_ELEMENT = 'w3cGetActiveElement'
W3C_GET_ALERT_TEXT = 'w3cGetAlertText'
W3C_GET_CURRENT_WINDOW_HANDLE = 'w3cGetCurrentWindowHandle'
W3C_GET_WINDOW_HANDLES = 'w3cGetWindowHandles'
W3C_GET_WINDOW_POSITION = 'w3cGetWindowPosition'
W3C_GET_WINDOW_SIZE = 'w3cGetWindowSize'
W3C_MAXIMIZE_WINDOW = 'w3cMaximizeWindow'
W3C_SET_ALERT_VALUE = 'w3cSetAlertValue'
W3C_SET_WINDOW_POSITION = 'w3cSetWindowPosition'
W3C_SET_WINDOW_SIZE = 'w3cSetWindowSize'
7.23 Remote WebDriver Error Handler
class selenium.webdriver.remote.errorhandler.ErrorCode
Bases: object
Error codes defined in the WebDriver wire protocol.
ELEMENT_CLICK_INTERCEPTED = [64, 'element click intercepted']
ELEMENT_IS_NOT_SELECTABLE = [15, 'element not selectable']
ELEMENT_NOT_INTERACTABLE = [60, 'element not interactable']
76 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
ELEMENT_NOT_VISIBLE = [11, 'element not visible']
IME_ENGINE_ACTIVATION_FAILED = [31, 'ime engine activation failed']
IME_NOT_AVAILABLE = [30, 'ime not available']
INSECURE_CERTIFICATE = ['insecure certificate']
INVALID_ARGUMENT = [61, 'invalid argument']
INVALID_COOKIE_DOMAIN = [24, 'invalid cookie domain']
INVALID_COORDINATES = ['invalid coordinates']
INVALID_ELEMENT_COORDINATES = [29, 'invalid element coordinates']
INVALID_ELEMENT_STATE = [12, 'invalid element state']
INVALID_SELECTOR = [32, 'invalid selector']
INVALID_SESSION_ID = ['invalid session id']
INVALID_XPATH_SELECTOR = [51, 'invalid selector']
INVALID_XPATH_SELECTOR_RETURN_TYPER = [52, 'invalid selector']
JAVASCRIPT_ERROR = [17, 'javascript error']
METHOD_NOT_ALLOWED = [405, 'unsupported operation']
MOVE_TARGET_OUT_OF_BOUNDS = [34, 'move target out of bounds']
NO_ALERT_OPEN = [27, 'no such alert']
NO_SUCH_COOKIE = [62, 'no such cookie']
NO_SUCH_ELEMENT = [7, 'no such element']
NO_SUCH_FRAME = [8, 'no such frame']
NO_SUCH_WINDOW = [23, 'no such window']
SCRIPT_TIMEOUT = [28, 'script timeout']
SESSION_NOT_CREATED = [33, 'session not created']
STALE_ELEMENT_REFERENCE = [10, 'stale element reference']
SUCCESS = 0
TIMEOUT = [21, 'timeout']
UNABLE_TO_CAPTURE_SCREEN = [63, 'unable to capture screen']
UNABLE_TO_SET_COOKIE = [25, 'unable to set cookie']
UNEXPECTED_ALERT_OPEN = [26, 'unexpected alert open']
UNKNOWN_COMMAND = [9, 'unknown command']
UNKNOWN_ERROR = [13, 'unknown error']
UNKNOWN_METHOD = ['unknown method exception']
XPATH_LOOKUP_ERROR = [19, 'invalid selector']
class selenium.webdriver.remote.errorhandler.ErrorHandler
Bases: object
Handles errors returned by the WebDriver server.
7.23. Remote WebDriver Error Handler 77
Selenium Python Bindings, Release 2
check_response(response)
Checks that a JSON response from the WebDriver does not have an error.
Args
• response - The JSON response from the WebDriver server as a dictionary object.
Raises If the response contains an error message.
7.24 Remote WebDriver Mobile
class selenium.webdriver.remote.mobile.Mobile(driver)
Bases: object
class ConnectionType(mask)
Bases: object
__init__(mask)
x.__init__(...) initializes x; see help(type(x)) for signature
airplane_mode
data
wifi
__init__(driver)
x.__init__(...) initializes x; see help(type(x)) for signature
set_network_connection(network)
Set the network connection for the remote device.
Example of setting airplane mode:
driver.mobile.set_network_connection(driver.mobile.AIRPLANE_MODE)
AIRPLANE_MODE = <selenium.webdriver.remote.mobile.ConnectionType object>
ALL_NETWORK = <selenium.webdriver.remote.mobile.ConnectionType object>
DATA_NETWORK = <selenium.webdriver.remote.mobile.ConnectionType object>
WIFI_NETWORK = <selenium.webdriver.remote.mobile.ConnectionType object>
context
returns the current context (Native or WebView).
contexts
returns a list of available contexts
network_connection
7.25 Remote WebDriver Remote Connection
class selenium.webdriver.remote.remote_connection.RemoteConnection(remote_server_addr,
keep_alive=False,
re-
solve_ip=True)
Bases: object
78 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
A connection with the Remote WebDriver server.
Communicates with the server using the WebDriver wire protocol: https://github.com/SeleniumHQ/selenium/
wiki/JsonWireProtocol
__init__(remote_server_addr, keep_alive=False, resolve_ip=True)
x.__init__(...) initializes x; see help(type(x)) for signature
execute(command, params)
Send a command to the remote server.
Any path subtitutions required for the URL mapped to the command should be included in the command
parameters.
Args
• command - A string specifying the command to execute.
• params - A dictionary of named parameters to send with the command as its JSON pay-
load.
classmethod get_remote_connection_headers(parsed_url, keep_alive=False)
Get headers for remote request.
Args
• parsed_url - The parsed url
• keep_alive (Boolean) - Is this a keep-alive connection (default: False)
classmethod get_timeout()
Returns Timeout value in seconds for all http requests made to the Remote Connection
classmethod reset_timeout()
Reset the http request timeout to socket._GLOBAL_DEFAULT_TIMEOUT
classmethod set_timeout(timeout)
Override the default timeout
Args
• timeout - timeout value for http requests in seconds
7.26 Remote WebDriver Utils
selenium.webdriver.remote.utils.dump_json(json_struct)
selenium.webdriver.remote.utils.format_json(json_struct)
selenium.webdriver.remote.utils.load_json(s)
selenium.webdriver.remote.utils.unzip_to_temp_dir(zip_file_name)
Unzip zipfile to a temporary directory.
The directory of the unzipped files is returned if success, otherwise None is returned.
7.26. Remote WebDriver Utils 79
Selenium Python Bindings, Release 2
7.27 Internet Explorer WebDriver
class selenium.webdriver.ie.webdriver.WebDriver(executable_path=’IEDriverServer.exe’,
capabilities=None, port=0, time-
out=30, host=None, log_level=None,
service_log_path=None, op-
tions=None, ie_options=None,
desired_capabilities=None,
log_file=None, keep_alive=False)
Bases: selenium.webdriver.remote.webdriver.WebDriver
Controls the IEServerDriver and allows you to drive Internet Explorer
__init__(executable_path=’IEDriverServer.exe’, capabilities=None, port=0, timeout=30,
host=None, log_level=None, service_log_path=None, options=None, ie_options=None,
desired_capabilities=None, log_file=None, keep_alive=False)
Creates a new instance of the chrome driver.
Starts the service and then creates new instance of chrome driver.
Args
• executable_path - path to the executable. If the default is used it assumes the executable is
in the $PATH
• capabilities: capabilities Dictionary object
• port - port you would like the service to run, if left as 0, a free port will be found.
• timeout - no longer used, kept for backward compatibility
• host - IP address for the service
• log_level - log level you would like the service to run.
• service_log_path - target of logging of service, may be “stdout”, “stderr” or file path.
• options - IE Options instance, providing additional IE options
• ie_options - Deprecated argument for options
• desired_capabilities - alias of capabilities; this will make the signature consistent with
RemoteWebDriver.
• log_file - Deprecated argument for service_log_path
• keep_alive - Whether to configure RemoteConnection to use HTTP keep-alive.
create_options()
quit()
Quits the driver and closes every associated window.
Usage driver.quit()
80 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
7.28 Android WebDriver
class selenium.webdriver.android.webdriver.WebDriver(host=’localhost’,
port=4444, de-
sired_capabilities={’browserName’:
’android’, ’platform’: ’AN-
DROID’, ’version’: ”})
Bases: selenium.webdriver.remote.webdriver.WebDriver
Simple RemoteWebDriver wrapper to start connect to Selendroid’s WebView app
For more info on getting started with Selendroid http://selendroid.io/mobileWeb.html
__init__(host=’localhost’, port=4444, desired_capabilities={’browserName’: ’android’, ’platform’:
’ANDROID’, ’version’: ”})
Creates a new instance of Selendroid using the WebView app
Args
• host - location of where selendroid is running
• port - port that selendroid is running on
• desired_capabilities: Dictionary object with capabilities
7.29 Opera WebDriver
class selenium.webdriver.opera.webdriver.OperaDriver(executable_path=None,
port=0, options=None,
service_args=None, de-
sired_capabilities=None,
service_log_path=None,
opera_options=None,
keep_alive=True)
Bases: selenium.webdriver.chrome.webdriver.WebDriver
Controls the new OperaDriver and allows you to drive the Opera browser based on Chromium.
__init__(executable_path=None, port=0, options=None, service_args=None, de-
sired_capabilities=None, service_log_path=None, opera_options=None, keep_alive=True)
Creates a new instance of the operadriver.
Starts the service and then creates new instance of operadriver.
Args
• executable_path - path to the executable. If the default is used it assumes the exe-
cutable is in the $PATH
• port - port you would like the service to run, if left as 0, a free port will be found.
• options: this takes an instance of OperaOptions
• service_args - List of args to pass to the driver service
• desired_capabilities: Dictionary object with non-browser specific
• service_log_path - Where to log information from the driver.
• opera_options - Deprecated argument for options capabilities only, such as “proxy” or
“loggingPref”.
7.28. Android WebDriver 81
Selenium Python Bindings, Release 2
create_options()
class selenium.webdriver.opera.webdriver.WebDriver(desired_capabilities=None, ex-
ecutable_path=None, port=0,
service_log_path=None, ser-
vice_args=None, options=None)
Bases: selenium.webdriver.opera.webdriver.OperaDriver
class ServiceType
CHROMIUM = 2
__init__(desired_capabilities=None, executable_path=None, port=0, service_log_path=None, ser-
vice_args=None, options=None)
Creates a new instance of the operadriver.
Starts the service and then creates new instance of operadriver.
Args
• executable_path - path to the executable. If the default is used it assumes the exe-
cutable is in the $PATH
• port - port you would like the service to run, if left as 0, a free port will be found.
• options: this takes an instance of OperaOptions
• service_args - List of args to pass to the driver service
• desired_capabilities: Dictionary object with non-browser specific
• service_log_path - Where to log information from the driver.
• opera_options - Deprecated argument for options capabilities only, such as “proxy” or
“loggingPref”.
7.30 PhantomJS WebDriver
class selenium.webdriver.phantomjs.webdriver.WebDriver(executable_path=’phantomjs’,
port=0, de-
sired_capabilities={’browserName’:
’phantomjs’, ’javascriptEn-
abled’: True, ’platform’:
’ANY’, ’version’: ”},
service_args=None, ser-
vice_log_path=None)
Bases: selenium.webdriver.remote.webdriver.WebDriver
Wrapper to communicate with PhantomJS through Ghostdriver.
You will need to follow all the directions here: https://github.com/detro/ghostdriver
__init__(executable_path=’phantomjs’, port=0, desired_capabilities={’browserName’: ’phantomjs’,
’javascriptEnabled’: True, ’platform’: ’ANY’, ’version’: ”}, service_args=None, ser-
vice_log_path=None)
Creates a new instance of the PhantomJS / Ghostdriver.
Starts the service and then creates new instance of the driver.
Args
82 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
• executable_path - path to the executable. If the default is used it assumes the executable is
in the $PATH
• port - port you would like the service to run, if left as 0, a free port will be found.
• desired_capabilities: Dictionary object with non-browser specific capabilities only, such
as “proxy” or “loggingPref”.
• service_args : A List of command line arguments to pass to PhantomJS
• service_log_path: Path for phantomjs service to log to.
quit()
Closes the browser and shuts down the PhantomJS executable that is started when starting the PhantomJS
7.31 PhantomJS WebDriver Service
class selenium.webdriver.phantomjs.service.Service(executable_path, port=0,
service_args=None,
log_path=None)
Bases: selenium.webdriver.common.service.Service
Object that manages the starting and stopping of PhantomJS / Ghostdriver
__init__(executable_path, port=0, service_args=None, log_path=None)
Creates a new instance of the Service
Args
• executable_path : Path to PhantomJS binary
• port : Port the service is running on
• service_args : A List of other command line options to pass to PhantomJS
• log_path: Path for PhantomJS service to log to
command_line_args()
send_remote_shutdown_command()
service_url
Gets the url of the GhostDriver Service
7.32 Safari WebDriver
class selenium.webdriver.safari.webdriver.WebDriver(port=0, exe-
cutable_path=’/usr/bin/safaridriver’,
reuse_service=False, de-
sired_capabilities={’browserName’:
’safari’, ’platform’: ’MAC’,
’version’: ”}, quiet=False,
keep_alive=True, ser-
vice_args=None)
Bases: selenium.webdriver.remote.webdriver.WebDriver
Controls the SafariDriver and allows you to drive the browser.
7.31. PhantomJS WebDriver Service 83
Selenium Python Bindings, Release 2
__init__(port=0, executable_path=’/usr/bin/safaridriver’, reuse_service=False, de-
sired_capabilities={’browserName’: ’safari’, ’platform’: ’MAC’, ’version’: ”},
quiet=False, keep_alive=True, service_args=None)
Creates a new Safari driver instance and launches or finds a running safaridriver service.
Args
• port - The port on which the safaridriver service should listen for new connections. If zero,
a free port will be found.
• executable_path - Path to a custom safaridriver executable to be used. If absent,
/usr/bin/safaridriver is used.
• reuse_service - If True, do not spawn a safaridriver instance; instead, connect to an already-
running service that was launched externally.
• desired_capabilities: Dictionary object with desired capabilities (Can be used to provide
various Safari switches).
• quiet - If True, the driver’s stdout and stderr is suppressed.
• keep_alive - Whether to configure SafariRemoteConnection to use HTTP keep-alive.
Defaults to False.
• service_args : List of args to pass to the safaridriver service
debug()
get_permission(permission)
quit()
Closes the browser and shuts down the SafariDriver executable that is started when starting the SafariDriver
set_permission(permission, value)
7.33 Safari WebDriver Service
class selenium.webdriver.safari.service.Service(executable_path, port=0, quiet=False,
service_args=None)
Bases: selenium.webdriver.common.service.Service
Object that manages the starting and stopping of the SafariDriver
__init__(executable_path, port=0, quiet=False, service_args=None)
Creates a new instance of the Service
Args
• executable_path : Path to the SafariDriver
• port : Port the service is running on
• quiet : Suppress driver stdout and stderr
• service_args : List of args to pass to the safaridriver service
command_line_args()
service_url
Gets the url of the SafariDriver Service
84 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
7.34 Select Support
class selenium.webdriver.support.select.Select(webelement)
Bases: object
__init__(webelement)
Constructor. A check is made that the given element is, indeed, a SELECT tag. If it is not, then an
UnexpectedTagNameException is thrown.
Args
• webelement - element SELECT element to wrap
Example: from selenium.webdriver.support.ui import Select
Select(driver.find_element_by_tag_name(“select”)).select_by_index(2)
deselect_all()
Clear all selected entries. This is only valid when the SELECT supports multiple selections. throws
NotImplementedError If the SELECT does not support multiple selections
deselect_by_index(index)
Deselect the option at the given index. This is done by examing the “index” attribute of an element, and
not merely by counting.
Args
• index - The option at this index will be deselected
throws NoSuchElementException If there is no option with specisied index in SELECT
deselect_by_value(value)
Deselect all options that have a value matching the argument. That is, when given “foo” this would deselect
an option like:
<option value=”foo”>Bar</option>
Args
• value - The value to match against
throws NoSuchElementException If there is no option with specisied value in SELECT
deselect_by_visible_text(text)
Deselect all options that display text matching the argument. That is, when given “Bar” this would deselect
an option like:
<option value=”foo”>Bar</option>
Args
• text - The visible text to match against
select_by_index(index)
Select the option at the given index. This is done by examing the “index” attribute of an element, and not
merely by counting.
Args
• index - The option at this index will be selected
throws NoSuchElementException If there is no option with specisied index in SELECT
7.34. Select Support 85
Selenium Python Bindings, Release 2
select_by_value(value)
Select all options that have a value matching the argument. That is, when given “foo” this would select an
option like:
<option value=”foo”>Bar</option>
Args
• value - The value to match against
throws NoSuchElementException If there is no option with specisied value in SELECT
select_by_visible_text(text)
Select all options that display text matching the argument. That is, when given “Bar” this would select an
option like:
<option value=”foo”>Bar</option>
Args
• text - The visible text to match against
throws NoSuchElementException If there is no option with specisied text in SELECT
all_selected_options
Returns a list of all selected options belonging to this select tag
first_selected_option
The first selected option in this select tag (or the currently selected option in a normal select)
options
Returns a list of all options belonging to this select tag
7.35 Wait Support
class selenium.webdriver.support.wait.WebDriverWait(driver, timeout,
poll_frequency=0.5, ig-
nored_exceptions=None)
Bases: object
__init__(driver, timeout, poll_frequency=0.5, ignored_exceptions=None)
Constructor, takes a WebDriver instance and timeout in seconds.
Args
• driver - Instance of WebDriver (Ie, Firefox, Chrome or Remote)
• timeout - Number of seconds before timing out
• poll_frequency - sleep interval between calls By default, it is 0.5 second.
• ignored_exceptions - iterable structure of exception classes ignored during calls. By de-
fault, it contains NoSuchElementException only.
Example: from selenium.webdriver.support.ui import WebDriverWait
element = WebDriverWait(driver, 10).until(lambda x: x.find_element_by_id(“someId”))
is_disappeared = WebDriverWait(driver, 30, 1, (ElementNotVisibleException)).
until_not(lambda x: x.find_element_by_id(“someId”).is_displayed())
86 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
until(method, message=”)
Calls the method provided with the driver as an argument until the return value is not False.
until_not(method, message=”)
Calls the method provided with the driver as an argument until the return value is False.
7.36 Color Support
class selenium.webdriver.support.color.Color(red, green, blue, alpha=1)
Bases: object
Color conversion support class
Example:
from selenium.webdriver.support.color import Color
print(Color.from_string('#00ff33').rgba)
print(Color.from_string('rgb(1, 255, 3)').hex)
print(Color.from_string('blue').rgba)
__init__(red, green, blue, alpha=1)
x.__init__(...) initializes x; see help(type(x)) for signature
static from_string(str_)
hex
rgb
rgba
7.37 Event Firing WebDriver Support
class selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver(driver,
event_listener)
Bases: object
A wrapper around an arbitrary WebDriver instance which supports firing events
__init__(driver, event_listener)
Creates a new instance of the EventFiringWebDriver
Args
• driver : A WebDriver instance
• event_listener : Instance of a class that subclasses AbstractEventListener and implements
it fully or partially
Example:
from selenium.webdriver import Firefox
from selenium.webdriver.support.events import EventFiringWebDriver,
˓→AbstractEventListener
class MyListener(AbstractEventListener):
def before_navigate_to(self, url, driver):
(continues on next page)
7.36. Color Support 87
Selenium Python Bindings, Release 2
(continued from previous page)
print("Before navigate to %s" % url)
def after_navigate_to(self, url, driver):
print("After navigate to %s" % url)
driver = Firefox()
ef_driver = EventFiringWebDriver(driver, MyListener())
ef_driver.get("http://www.google.co.in/")
back()
close()
execute_async_script(script, *args)
execute_script(script, *args)
find_element(by=’id’, value=None)
find_element_by_class_name(name)
find_element_by_css_selector(css_selector)
find_element_by_id(id_)
find_element_by_link_text(link_text)
find_element_by_name(name)
find_element_by_partial_link_text(link_text)
find_element_by_tag_name(name)
find_element_by_xpath(xpath)
find_elements(by=’id’, value=None)
find_elements_by_class_name(name)
find_elements_by_css_selector(css_selector)
find_elements_by_id(id_)
find_elements_by_link_text(text)
find_elements_by_name(name)
find_elements_by_partial_link_text(link_text)
find_elements_by_tag_name(name)
find_elements_by_xpath(xpath)
forward()
get(url)
quit()
wrapped_driver
Returns the WebDriver instance wrapped by this EventsFiringWebDriver
class selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement(webelement,
ef_driver)
Bases: object
” A wrapper around WebElement instance which supports firing events
88 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
__init__(webelement, ef_driver)
Creates a new instance of the EventFiringWebElement
clear()
click()
find_element(by=’id’, value=None)
find_element_by_class_name(name)
find_element_by_css_selector(css_selector)
find_element_by_id(id_)
find_element_by_link_text(link_text)
find_element_by_name(name)
find_element_by_partial_link_text(link_text)
find_element_by_tag_name(name)
find_element_by_xpath(xpath)
find_elements(by=’id’, value=None)
find_elements_by_class_name(name)
find_elements_by_css_selector(css_selector)
find_elements_by_id(id_)
find_elements_by_link_text(link_text)
find_elements_by_name(name)
find_elements_by_partial_link_text(link_text)
find_elements_by_tag_name(name)
find_elements_by_xpath(xpath)
send_keys(*value)
wrapped_element
Returns the WebElement wrapped by this EventFiringWebElement instance
7.38 Abstract Event Listener Support
class selenium.webdriver.support.abstract_event_listener.AbstractEventListener
Bases: object
Event listener must subclass and implement this fully or partially
after_change_value_of(element, driver)
after_click(element, driver)
after_close(driver)
after_execute_script(script, driver)
after_find(by, value, driver)
after_navigate_back(driver)
7.38. Abstract Event Listener Support 89
Selenium Python Bindings, Release 2
after_navigate_forward(driver)
after_navigate_to(url, driver)
after_quit(driver)
before_change_value_of(element, driver)
before_click(element, driver)
before_close(driver)
before_execute_script(script, driver)
before_find(by, value, driver)
before_navigate_back(driver)
before_navigate_forward(driver)
before_navigate_to(url, driver)
before_quit(driver)
on_exception(exception, driver)
7.39 Expected conditions Support
class selenium.webdriver.support.expected_conditions.alert_is_present
Bases: object
Expect an alert to be present.
__init__()
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.element_located_selection_state_to_be(
Bases: object
An expectation to locate an element and check if the selection state specified is in that state. locator is a tuple of
(by, path) is_selected is a boolean
__init__(locator, is_selected)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.element_located_to_be_selected(locator)
Bases: object
An expectation for the element to be located is selected. locator is a tuple of (by, path)
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.element_selection_state_to_be(element,
is_selected
Bases: object
An expectation for checking if the given element is selected. element is WebElement object is_selected is a
Boolean.”
__init__(element, is_selected)
x.__init__(...) initializes x; see help(type(x)) for signature
90 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
class selenium.webdriver.support.expected_conditions.element_to_be_clickable(locator)
Bases: object
An Expectation for checking an element is visible and enabled such that you can click it.
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.element_to_be_selected(element)
Bases: object
An expectation for checking the selection is selected. element is WebElement object
__init__(element)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.frame_to_be_available_and_switch_to_it
Bases: object
An expectation for checking whether the given frame is available to switch to. If the frame is available it switches
the given driver to the specified frame.
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.invisibility_of_element(locator)
Bases: selenium.webdriver.support.expected_conditions.
invisibility_of_element_located
An Expectation for checking that an element is either invisible or not present on the DOM.
element is either a locator (text) or an WebElement
class selenium.webdriver.support.expected_conditions.invisibility_of_element_located(locator)
Bases: object
An Expectation for checking that an element is either invisible or not present on the DOM.
locator used to find the element
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.new_window_is_opened(current_handles)
Bases: object
An expectation that a new window will be opened and have the number of windows handles increase
__init__(current_handles)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.number_of_windows_to_be(num_windows)
Bases: object
An expectation for the number of windows to be a certain value.
__init__(num_windows)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.presence_of_all_elements_located(locator
Bases: object
An expectation for checking that there is at least one element present on a web page. locator is used to find the
element returns the list of WebElements once they are located
7.39. Expected conditions Support 91
Selenium Python Bindings, Release 2
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.presence_of_element_located(locator)
Bases: object
An expectation for checking that an element is present on the DOM of a page. This does not necessarily mean
that the element is visible. locator - used to find the element returns the WebElement once it is located
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.staleness_of(element)
Bases: object
Wait until an element is no longer attached to the DOM. element is the element to wait for. returns False if the
element is still attached to the DOM, true otherwise.
__init__(element)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.text_to_be_present_in_element(locator,
text_)
Bases: object
An expectation for checking if the given text is present in the specified element. locator, text
__init__(locator, text_)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.text_to_be_present_in_element_value(loc
tex
Bases: object
An expectation for checking if the given text is present in the element’s locator, text
__init__(locator, text_)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.title_contains(title)
Bases: object
An expectation for checking that the title contains a case-sensitive substring. title is the fragment of title expected
returns True when the title matches, False otherwise
__init__(title)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.title_is(title)
Bases: object
An expectation for checking the title of a page. title is the expected title, which must be an exact match returns
True if the title matches, false otherwise.
__init__(title)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.url_changes(url)
Bases: object
An expectation for checking the current url. url is the expected url, which must not be an exact match returns
True if the url is different, false otherwise.
__init__(url)
x.__init__(...) initializes x; see help(type(x)) for signature
92 Chapter 7. WebDriver API
Selenium Python Bindings, Release 2
class selenium.webdriver.support.expected_conditions.url_contains(url)
Bases: object
An expectation for checking that the current url contains a case-sensitive substring. url is the fragment of url
expected, returns True when the url matches, False otherwise
__init__(url)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.url_matches(pattern)
Bases: object
An expectation for checking the current url. pattern is the expected pattern, which must be an exact match
returns True if the url matches, false otherwise.
__init__(pattern)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.url_to_be(url)
Bases: object
An expectation for checking the current url. url is the expected url, which must be an exact match returns True
if the url matches, false otherwise.
__init__(url)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.visibility_of(element)
Bases: object
An expectation for checking that an element, known to be present on the DOM of a page, is visible. Visibility
means that the element is not only displayed but also has a height and width that is greater than 0. element is the
WebElement returns the (same) WebElement once it is visible
__init__(element)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.visibility_of_all_elements_located(loca
Bases: object
An expectation for checking that all elements are present on the DOM of a page and visible. Visibility means
that the elements are not only displayed but also has a height and width that is greater than 0. locator - used to
find the elements returns the list of WebElements once they are located and visible
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.visibility_of_any_elements_located(loca
Bases: object
An expectation for checking that there is at least one element visible on a web page. locator is used to find the
element returns the list of WebElements once they are located
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
class selenium.webdriver.support.expected_conditions.visibility_of_element_located(locator)
Bases: object
An expectation for checking that an element is present on the DOM of a page and visible. Visibility means that
the element is not only displayed but also has a height and width that is greater than 0. locator - used to find the
element returns the WebElement once it is located and visible
7.39. Expected conditions Support 93
Selenium Python Bindings, Release 2
__init__(locator)
x.__init__(...) initializes x; see help(type(x)) for signature
94 Chapter 7. WebDriver API
CHAPTER 8
Appendix: Frequently Asked Questions
Another FAQ: https://github.com/SeleniumHQ/selenium/wiki/Frequently-Asked-Questions
8.1 How to use ChromeDriver ?
Download the latest chromedriver from download page. Unzip the file:
unzip chromedriver_linux32_x.x.x.x.zip
You should see a chromedriver executable. Now you can create an instance of Chrome WebDriver like this:
driver = webdriver.Chrome(executable_path="/path/to/chromedriver")
The rest of the example should work as given in other documentation.
8.2 Does Selenium 2 support XPath 2.0 ?
Ref: http://seleniumhq.org/docs/03_webdriver.html#how-xpath-works-in-webdriver
Selenium delegates XPath queries down to the browser’s own XPath engine, so Selenium support XPath supports
whatever the browser supports. In browsers which don’t have native XPath engines (IE 6,7,8), Selenium supports
XPath 1.0 only.
8.3 How to scroll down to the bottom of a page ?
Ref: http://blog.varunin.com/2011/08/scrolling-on-pages-using-selenium.html
You can use the execute_script method to execute javascript on the loaded page. So, you can call the JavaScript API
to scroll to the bottom or any other position of a page.
95
Selenium Python Bindings, Release 2
Here is an example to scroll to the bottom of a page:
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
The window object in DOM has a scrollTo method to scroll to any position of an opened window. The scrollHeight
is a common property for all elements. The document.body.scrollHeight will give the height of the entire body of the
page.
8.4 How to auto save files using custom Firefox profile ?
Ref: http://stackoverflow.com/questions/1176348/access-to-file-download-dialog-in-firefox
Ref: http://blog.codecentric.de/en/2010/07/file-downloads-with-selenium-mission-impossible/
The first step is to identify the type of file you want to auto save.
To identify the content type you want to download automatically, you can use curl:
curl -I URL | grep "Content-Type"
Another way to find content type is using the requests module, you can use it like this:
import requests
content_type = requests.head('http://www.python.org').headers['content-type']
print(content_type)
Once the content type is identified, you can use it to set the firefox profile preference: browser.helperApps.
neverAsk.saveToDisk
Here is an example:
import os
from selenium import webdriver
fp = webdriver.FirefoxProfile()
fp.set_preference("browser.download.folderList",2)
fp.set_preference("browser.download.manager.showWhenStarting",False)
fp.set_preference("browser.download.dir", os.getcwd())
fp.set_preference("browser.helperApps.neverAsk.saveToDisk", "application/octet-stream
˓→")
browser = webdriver.Firefox(firefox_profile=fp)
browser.get("http://pypi.python.org/pypi/selenium")
browser.find_element_by_partial_link_text("selenium-2").click()
In the above example, application/octet-stream is used as the content type.
The browser.download.dir option specify the directory where you want to download the files.
8.5 How to upload files into file inputs ?
Select the <input type="file"> element and call the send_keys() method passing the file path, either the
path relative to the test script, or an absolute path. Keep in mind the differences in path names between Windows and
Unix systems.
96 Chapter 8. Appendix: Frequently Asked Questions
Selenium Python Bindings, Release 2
8.6 How to use firebug with Firefox ?
First download the Firebug XPI file, later you call the add_extension method available for the firefox profile:
from selenium import webdriver
fp = webdriver.FirefoxProfile()
fp.add_extension(extension='firebug-1.8.4.xpi')
fp.set_preference("extensions.firebug.currentVersion", "1.8.4") #Avoid startup screen
browser = webdriver.Firefox(firefox_profile=fp)
8.7 How to take screenshot of the current window ?
Use the save_screenshot method provided by the webdriver:
from selenium import webdriver
driver = webdriver.Firefox()
driver.get('http://www.python.org/')
driver.save_screenshot('screenshot.png')
driver.quit()
8.6. How to use firebug with Firefox ? 97
Selenium Python Bindings, Release 2
98 Chapter 8. Appendix: Frequently Asked Questions
CHAPTER 9
Indices and tables
• genindex
• modindex
• search
99
Selenium Python Bindings, Release 2
100 Chapter 9. Indices and tables
Python Module Index
s
selenium.common.exceptions, 32
selenium.webdriver.android.webdriver,
81
selenium.webdriver.chrome.options, 55
selenium.webdriver.chrome.service, 56
selenium.webdriver.chrome.webdriver, 54
selenium.webdriver.common.action_chains,
37
selenium.webdriver.common.alert, 40
selenium.webdriver.common.by, 43
selenium.webdriver.common.desired_capabilities,
43
selenium.webdriver.common.html5.application_cache,
48
selenium.webdriver.common.keys, 41
selenium.webdriver.common.proxy, 46
selenium.webdriver.common.service, 48
selenium.webdriver.common.touch_actions,
44
selenium.webdriver.common.utils, 47
selenium.webdriver.firefox.extension_connection,
53
selenium.webdriver.firefox.firefox_binary,
52
selenium.webdriver.firefox.firefox_profile,
52
selenium.webdriver.firefox.options, 51
selenium.webdriver.firefox.webdriver,
49
selenium.webdriver.ie.webdriver, 80
selenium.webdriver.opera.webdriver, 81
selenium.webdriver.phantomjs.service,
83
selenium.webdriver.phantomjs.webdriver,
82
selenium.webdriver.remote.command, 73
selenium.webdriver.remote.errorhandler,
76
selenium.webdriver.remote.mobile, 78
selenium.webdriver.remote.remote_connection,
78
selenium.webdriver.remote.utils, 79
selenium.webdriver.remote.webdriver, 56
selenium.webdriver.remote.webelement,
66
selenium.webdriver.safari.service, 84
selenium.webdriver.safari.webdriver, 83
selenium.webdriver.support.abstract_event_listener,
89
selenium.webdriver.support.color, 87
selenium.webdriver.support.event_firing_webdriver,
87
selenium.webdriver.support.expected_conditions,
90
selenium.webdriver.support.select, 85
selenium.webdriver.support.wait, 86
101
Selenium Python Bindings, Release 2
102 Python Module Index
Index
Symbols
__init__() (selenium.common.exceptions.ErrorInResponseException
method), 33
__init__() (selenium.common.exceptions.UnexpectedAlertPresentException
method), 36
__init__() (selenium.common.exceptions.WebDriverException
method), 37
__init__() (selenium.webdriver.android.webdriver.WebDriver
method), 81
__init__() (selenium.webdriver.chrome.options.Options
method), 55
__init__() (selenium.webdriver.chrome.service.Service
method), 56
__init__() (selenium.webdriver.chrome.webdriver.WebDriver
method), 54
__init__() (selenium.webdriver.common.action_chains.ActionChains
method), 37
__init__() (selenium.webdriver.common.alert.Alert
method), 40
__init__() (selenium.webdriver.common.html5.application_cache.ApplicationCache
method), 48
__init__() (selenium.webdriver.common.proxy.Proxy
method), 46
__init__() (selenium.webdriver.common.service.Service
method), 48
__init__() (selenium.webdriver.common.touch_actions.TouchActions
method), 44
__init__() (selenium.webdriver.firefox.extension_connection.ExtensionConnection
method), 53
__init__() (selenium.webdriver.firefox.firefox_binary.FirefoxBinary
method), 52
__init__() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile
method), 52
__init__() (selenium.webdriver.firefox.options.Log
method), 51
__init__() (selenium.webdriver.firefox.options.Options
method), 51
__init__() (selenium.webdriver.firefox.webdriver.WebDriver
method), 49
__init__() (selenium.webdriver.ie.webdriver.WebDriver
method), 80
__init__() (selenium.webdriver.opera.webdriver.OperaDriver
method), 81
__init__() (selenium.webdriver.opera.webdriver.WebDriver
method), 82
__init__() (selenium.webdriver.phantomjs.service.Service
method), 83
__init__() (selenium.webdriver.phantomjs.webdriver.WebDriver
method), 82
__init__() (selenium.webdriver.remote.mobile.Mobile
method), 78
__init__() (selenium.webdriver.remote.mobile.Mobile.ConnectionType
method), 78
__init__() (selenium.webdriver.remote.remote_connection.RemoteConnecti
method), 79
__init__() (selenium.webdriver.remote.webdriver.WebDriver
method), 57
__init__() (selenium.webdriver.remote.webelement.WebElement
method), 66
__init__() (selenium.webdriver.safari.service.Service
method), 84
__init__() (selenium.webdriver.safari.webdriver.WebDriver
method), 83
__init__() (selenium.webdriver.support.color.Color
method), 87
__init__() (selenium.webdriver.support.event_firing_webdriver.EventFiringW
method), 87
__init__() (selenium.webdriver.support.event_firing_webdriver.EventFiringW
method), 88
__init__() (selenium.webdriver.support.expected_conditions.alert_is_presen
method), 90
__init__() (selenium.webdriver.support.expected_conditions.element_locate
method), 90
__init__() (selenium.webdriver.support.expected_conditions.element_locate
method), 90
__init__() (selenium.webdriver.support.expected_conditions.element_select
method), 90
__init__() (selenium.webdriver.support.expected_conditions.element_to_be_
method), 91
103
Selenium Python Bindings, Release 2
__init__() (selenium.webdriver.support.expected_conditions.element_to_be_selected
method), 91
__init__() (selenium.webdriver.support.expected_conditions.frame_to_be_available_and_switch_to_it
method), 91
__init__() (selenium.webdriver.support.expected_conditions.invisibility_of_element_located
method), 91
__init__() (selenium.webdriver.support.expected_conditions.new_window_is_opened
method), 91
__init__() (selenium.webdriver.support.expected_conditions.number_of_windows_to_be
method), 91
__init__() (selenium.webdriver.support.expected_conditions.presence_of_all_elements_located
method), 91
__init__() (selenium.webdriver.support.expected_conditions.presence_of_element_located
method), 92
__init__() (selenium.webdriver.support.expected_conditions.staleness_of
method), 92
__init__() (selenium.webdriver.support.expected_conditions.text_to_be_present_in_element
method), 92
__init__() (selenium.webdriver.support.expected_conditions.text_to_be_present_in_element_value
method), 92
__init__() (selenium.webdriver.support.expected_conditions.title_contains
method), 92
__init__() (selenium.webdriver.support.expected_conditions.title_is
method), 92
__init__() (selenium.webdriver.support.expected_conditions.url_changes
method), 92
__init__() (selenium.webdriver.support.expected_conditions.url_contains
method), 93
__init__() (selenium.webdriver.support.expected_conditions.url_matches
method), 93
__init__() (selenium.webdriver.support.expected_conditions.url_to_be
method), 93
__init__() (selenium.webdriver.support.expected_conditions.visibility_of
method), 93
__init__() (selenium.webdriver.support.expected_conditions.visibility_of_all_elements_located
method), 93
__init__() (selenium.webdriver.support.expected_conditions.visibility_of_any_elements_located
method), 93
__init__() (selenium.webdriver.support.expected_conditions.visibility_of_element_located
method), 93
__init__() (selenium.webdriver.support.select.Select
method), 85
__init__() (selenium.webdriver.support.wait.WebDriverWait
method), 86
A
AbstractEventListener (class in sele-
nium.webdriver.support.abstract_event_listener),
89
accept() (selenium.webdriver.common.alert.Alert
method), 40
ACCEPT_ALERT (sele-
nium.webdriver.remote.command.Command
attribute), 73
accept_insecure_certs (sele-
nium.webdriver.firefox.options.Options at-
tribute), 51
accept_untrusted_certs (sele-
nium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
ActionChains (class in sele-
nium.webdriver.common.action_chains),
37
ADD (selenium.webdriver.common.keys.Keys attribute),
41
add_argument() (selenium.webdriver.chrome.options.Options
method), 55
add_argument() (selenium.webdriver.firefox.options.Options
method), 51
add_command_line_options() (sele-
nium.webdriver.firefox.firefox_binary.FirefoxBinary
method), 53
ADD_COOKIE (selenium.webdriver.remote.command.Command
attribute), 73
add_cookie() (selenium.webdriver.remote.webdriver.WebDriver
method), 57
add_encoded_extension() (sele-
nium.webdriver.chrome.options.Options
method), 55
add_experimental_option() (sele-
nium.webdriver.chrome.options.Options
method), 55
add_extension() (selenium.webdriver.chrome.options.Options
method), 55
add_extension() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile
method), 52
add_to_capabilities() (sele-
nium.webdriver.common.proxy.Proxy method),
46
AddonFormatError, 52
after_change_value_of() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 89
after_click() (selenium.webdriver.support.abstract_event_listener.AbstractEv
method), 89
after_close() (selenium.webdriver.support.abstract_event_listener.AbstractE
method), 89
after_execute_script() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 89
after_find() (selenium.webdriver.support.abstract_event_listener.AbstractEv
method), 89
after_navigate_back() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 89
after_navigate_forward() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 89
104 Index
Selenium Python Bindings, Release 2
after_navigate_to() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventListener
method), 90
after_quit() (selenium.webdriver.support.abstract_event_listener.AbstractEventListener
method), 90
AIRPLANE_MODE (sele-
nium.webdriver.remote.mobile.Mobile at-
tribute), 78
airplane_mode (selenium.webdriver.remote.mobile.Mobile.ConnectionType
attribute), 78
Alert (class in selenium.webdriver.common.alert), 40
alert_is_present (class in sele-
nium.webdriver.support.expected_conditions),
90
ALL_NETWORK (sele-
nium.webdriver.remote.mobile.Mobile at-
tribute), 78
all_selected_options (sele-
nium.webdriver.support.select.Select attribute),
86
ALT (selenium.webdriver.common.keys.Keys attribute),
41
ANDROID (selenium.webdriver.common.desired_capabilities.DesiredCapabilities
attribute), 43
ANONYMOUS_PROFILE_NAME (sele-
nium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
application_cache (sele-
nium.webdriver.remote.webdriver.WebDriver
attribute), 65
ApplicationCache (class in sele-
nium.webdriver.common.html5.application_cache),
48
arguments (selenium.webdriver.chrome.options.Options
attribute), 56
arguments (selenium.webdriver.firefox.options.Options
attribute), 51
ARROW_DOWN (sele-
nium.webdriver.common.keys.Keys attribute),
41
ARROW_LEFT (selenium.webdriver.common.keys.Keys
attribute), 41
ARROW_RIGHT (sele-
nium.webdriver.common.keys.Keys attribute),
41
ARROW_UP (selenium.webdriver.common.keys.Keys
attribute), 41
assert_process_still_running() (sele-
nium.webdriver.common.service.Service
method), 48
assume_untrusted_cert_issuer (sele-
nium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
auto_detect (selenium.webdriver.common.proxy.Proxy
attribute), 46
autodetect (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
AUTODETECT (selenium.webdriver.common.proxy.ProxyType
attribute), 47
B
back() (selenium.webdriver.remote.webdriver.WebDriver
method), 57
back() (selenium.webdriver.support.event_firing_webdriver.EventFiringWeb
method), 88
BACK_SPACE (selenium.webdriver.common.keys.Keys
attribute), 41
BACKSPACE (selenium.webdriver.common.keys.Keys
attribute), 41
before_change_value_of() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 90
before_click() (selenium.webdriver.support.abstract_event_listener.Abstract
method), 90
before_close() (selenium.webdriver.support.abstract_event_listener.Abstract
method), 90
before_execute_script() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 90
before_find() (selenium.webdriver.support.abstract_event_listener.AbstractE
method), 90
before_navigate_back() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 90
before_navigate_forward() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 90
before_navigate_to() (sele-
nium.webdriver.support.abstract_event_listener.AbstractEventList
method), 90
before_quit() (selenium.webdriver.support.abstract_event_listener.AbstractE
method), 90
binary (selenium.webdriver.firefox.options.Options at-
tribute), 51
binary_location (selenium.webdriver.chrome.options.Options
attribute), 56
binary_location (selenium.webdriver.firefox.options.Options
attribute), 51
By (class in selenium.webdriver.common.by), 43
C
CANCEL (selenium.webdriver.common.keys.Keys at-
tribute), 41
capabilities (selenium.webdriver.chrome.options.Options
attribute), 56
capabilities (selenium.webdriver.firefox.options.Options
attribute), 51
Index 105
Selenium Python Bindings, Release 2
check_response() (sele-
nium.webdriver.remote.errorhandler.ErrorHandler
method), 77
CHECKING (selenium.webdriver.common.html5.application_cache.ApplicationCache
attribute), 49
CHROME (selenium.webdriver.common.desired_capabilities.DesiredCapabilities
attribute), 43
CHROMIUM (selenium.webdriver.opera.webdriver.WebDriver.ServiceType
attribute), 82
CLASS_NAME (selenium.webdriver.common.by.By at-
tribute), 43
CLEAR (selenium.webdriver.common.keys.Keys at-
tribute), 41
clear() (selenium.webdriver.remote.webelement.WebElement
method), 66
clear() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
CLEAR_APP_CACHE (sele-
nium.webdriver.remote.command.Command
attribute), 73
CLEAR_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 73
CLEAR_LOCAL_STORAGE (sele-
nium.webdriver.remote.command.Command
attribute), 73
CLEAR_SESSION_STORAGE (sele-
nium.webdriver.remote.command.Command
attribute), 73
CLICK (selenium.webdriver.remote.command.Command
attribute), 73
click() (selenium.webdriver.common.action_chains.ActionChains
method), 38
click() (selenium.webdriver.remote.webelement.WebElement
method), 67
click() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
click_and_hold() (sele-
nium.webdriver.common.action_chains.ActionChains
method), 38
CLICK_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 73
CLOSE (selenium.webdriver.remote.command.Command
attribute), 73
close() (selenium.webdriver.remote.webdriver.WebDriver
method), 58
close() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
Color (class in selenium.webdriver.support.color), 87
Command (class in sele-
nium.webdriver.remote.command), 73
COMMAND (selenium.webdriver.common.keys.Keys
attribute), 41
command_line_args() (sele-
nium.webdriver.chrome.service.Service
method), 56
command_line_args() (sele-
nium.webdriver.common.service.Service
method), 48
command_line_args() (sele-
nium.webdriver.phantomjs.service.Service
method), 83
command_line_args() (sele-
nium.webdriver.safari.service.Service method),
84
connect() (selenium.webdriver.firefox.extension_connection.ExtensionConn
method), 53
connect_and_quit() (sele-
nium.webdriver.firefox.extension_connection.ExtensionConnectio
class method), 53
context (selenium.webdriver.remote.mobile.Mobile at-
tribute), 78
context() (selenium.webdriver.firefox.webdriver.WebDriver
method), 50
CONTEXT_CHROME (sele-
nium.webdriver.firefox.webdriver.WebDriver
attribute), 50
context_click() (selenium.webdriver.common.action_chains.ActionChains
method), 38
CONTEXT_CONTENT (sele-
nium.webdriver.firefox.webdriver.WebDriver
attribute), 51
CONTEXT_HANDLES (sele-
nium.webdriver.remote.command.Command
attribute), 73
contexts (selenium.webdriver.remote.mobile.Mobile at-
tribute), 78
CONTROL (selenium.webdriver.common.keys.Keys at-
tribute), 41
create_options() (selenium.webdriver.chrome.webdriver.WebDriver
method), 54
create_options() (selenium.webdriver.ie.webdriver.WebDriver
method), 80
create_options() (selenium.webdriver.opera.webdriver.OperaDriver
method), 81
create_web_element() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 58
CSS_SELECTOR (selenium.webdriver.common.by.By
attribute), 43
CURRENT_CONTEXT_HANDLE (sele-
nium.webdriver.remote.command.Command
attribute), 73
current_url (selenium.webdriver.remote.webdriver.WebDriver
attribute), 65
current_window_handle (sele-
nium.webdriver.remote.webdriver.WebDriver
106 Index
Selenium Python Bindings, Release 2
attribute), 65
D
data (selenium.webdriver.remote.mobile.Mobile.ConnectionType
attribute), 78
DATA_NETWORK (sele-
nium.webdriver.remote.mobile.Mobile at-
tribute), 78
debug() (selenium.webdriver.safari.webdriver.WebDriver
method), 84
debugger_address (sele-
nium.webdriver.chrome.options.Options
attribute), 56
DECIMAL (selenium.webdriver.common.keys.Keys at-
tribute), 41
DEFAULT_PREFERENCES (sele-
nium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
DELETE (selenium.webdriver.common.keys.Keys
attribute), 41
DELETE_ALL_COOKIES (sele-
nium.webdriver.remote.command.Command
attribute), 73
delete_all_cookies() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 58
DELETE_COOKIE (sele-
nium.webdriver.remote.command.Command
attribute), 73
delete_cookie() (selenium.webdriver.remote.webdriver.WebDriver
method), 58
DELETE_SESSION (sele-
nium.webdriver.remote.command.Command
attribute), 73
deselect_all() (selenium.webdriver.support.select.Select
method), 85
deselect_by_index() (sele-
nium.webdriver.support.select.Select method),
85
deselect_by_value() (sele-
nium.webdriver.support.select.Select method),
85
deselect_by_visible_text() (sele-
nium.webdriver.support.select.Select method),
85
desired_capabilities (sele-
nium.webdriver.remote.webdriver.WebDriver
attribute), 65
DesiredCapabilities (class in sele-
nium.webdriver.common.desired_capabilities),
43
DIRECT (selenium.webdriver.common.proxy.ProxyType
attribute), 47
dismiss() (selenium.webdriver.common.alert.Alert
method), 40
DISMISS_ALERT (sele-
nium.webdriver.remote.command.Command
attribute), 73
DIVIDE (selenium.webdriver.common.keys.Keys at-
tribute), 41
DOUBLE_CLICK (sele-
nium.webdriver.remote.command.Command
attribute), 73
double_click() (selenium.webdriver.common.action_chains.ActionChains
method), 38
DOUBLE_TAP (selenium.webdriver.remote.command.Command
attribute), 73
double_tap() (selenium.webdriver.common.touch_actions.TouchActions
method), 44
DOWN (selenium.webdriver.common.keys.Keys at-
tribute), 41
DOWNLOADING (sele-
nium.webdriver.common.html5.application_cache.ApplicationCac
attribute), 49
drag_and_drop() (selenium.webdriver.common.action_chains.ActionChains
method), 38
drag_and_drop_by_offset() (sele-
nium.webdriver.common.action_chains.ActionChains
method), 38
dump_json() (in module sele-
nium.webdriver.remote.utils), 79
E
EDGE (selenium.webdriver.common.desired_capabilities.DesiredCapabiliti
attribute), 43
ELEMENT_CLICK_INTERCEPTED (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 76
ELEMENT_IS_NOT_SELECTABLE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 76
element_located_selection_state_to_be (class in sele-
nium.webdriver.support.expected_conditions),
90
element_located_to_be_selected (class in sele-
nium.webdriver.support.expected_conditions),
90
ELEMENT_NOT_INTERACTABLE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 76
ELEMENT_NOT_VISIBLE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 76
ELEMENT_SCREENSHOT (sele-
nium.webdriver.remote.command.Command
attribute), 73
Index 107
Selenium Python Bindings, Release 2
element_selection_state_to_be (class in sele-
nium.webdriver.support.expected_conditions),
90
element_to_be_clickable (class in sele-
nium.webdriver.support.expected_conditions),
90
element_to_be_selected (class in sele-
nium.webdriver.support.expected_conditions),
91
ElementClickInterceptedException, 32
ElementNotInteractableException, 32
ElementNotSelectableException, 32
ElementNotVisibleException, 32
encoded (selenium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
END (selenium.webdriver.common.keys.Keys attribute),
41
ENTER (selenium.webdriver.common.keys.Keys at-
tribute), 41
EQUALS (selenium.webdriver.common.keys.Keys
attribute), 41
ErrorCode (class in sele-
nium.webdriver.remote.errorhandler), 76
ErrorHandler (class in sele-
nium.webdriver.remote.errorhandler), 77
ErrorInResponseException, 33
ESCAPE (selenium.webdriver.common.keys.Keys
attribute), 41
EventFiringWebDriver (class in sele-
nium.webdriver.support.event_firing_webdriver),
87
EventFiringWebElement (class in sele-
nium.webdriver.support.event_firing_webdriver),
88
execute() (selenium.webdriver.remote.remote_connection.RemoteConnection
method), 79
execute() (selenium.webdriver.remote.webdriver.WebDriver
method), 58
EXECUTE_ASYNC_SCRIPT (sele-
nium.webdriver.remote.command.Command
attribute), 73
execute_async_script() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 58
execute_async_script() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
execute_cdp_cmd() (sele-
nium.webdriver.chrome.webdriver.WebDriver
method), 54
EXECUTE_SCRIPT (sele-
nium.webdriver.remote.command.Command
attribute), 73
execute_script() (selenium.webdriver.remote.webdriver.WebDriver
method), 58
execute_script() (selenium.webdriver.support.event_firing_webdriver.EventF
method), 88
EXECUTE_SQL (sele-
nium.webdriver.remote.command.Command
attribute), 73
experimental_options (sele-
nium.webdriver.chrome.options.Options
attribute), 56
ExtensionConnection (class in sele-
nium.webdriver.firefox.extension_connection),
53
ExtensionConnectionError, 53
extensions (selenium.webdriver.chrome.options.Options
attribute), 56
F
F1 (selenium.webdriver.common.keys.Keys attribute), 41
F10 (selenium.webdriver.common.keys.Keys attribute),
41
F11 (selenium.webdriver.common.keys.Keys attribute),
41
F12 (selenium.webdriver.common.keys.Keys attribute),
41
F2 (selenium.webdriver.common.keys.Keys attribute), 41
F3 (selenium.webdriver.common.keys.Keys attribute), 41
F4 (selenium.webdriver.common.keys.Keys attribute), 41
F5 (selenium.webdriver.common.keys.Keys attribute), 41
F6 (selenium.webdriver.common.keys.Keys attribute), 41
F7 (selenium.webdriver.common.keys.Keys attribute), 42
F8 (selenium.webdriver.common.keys.Keys attribute), 42
F9 (selenium.webdriver.common.keys.Keys attribute), 42
file_detector (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
file_detector_context() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 58
FIND_CHILD_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 73
FIND_CHILD_ELEMENTS (sele-
nium.webdriver.remote.command.Command
attribute), 73
find_connectable_ip() (in module sele-
nium.webdriver.common.utils), 47
FIND_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 73
find_element() (selenium.webdriver.remote.webdriver.WebDriver
method), 59
find_element() (selenium.webdriver.remote.webelement.WebElement
method), 67
find_element() (selenium.webdriver.support.event_firing_webdriver.EventFi
method), 88
108 Index
Selenium Python Bindings, Release 2
find_element() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_element_by_class_name() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 59
find_element_by_class_name() (sele-
nium.webdriver.remote.webelement.WebElement
method), 67
find_element_by_class_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_element_by_class_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_element_by_css_selector() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 59
find_element_by_css_selector() (sele-
nium.webdriver.remote.webelement.WebElement
method), 67
find_element_by_css_selector() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_element_by_css_selector() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_element_by_id() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 59
find_element_by_id() (sele-
nium.webdriver.remote.webelement.WebElement
method), 67
find_element_by_id() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_element_by_id() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_element_by_link_text() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 59
find_element_by_link_text() (sele-
nium.webdriver.remote.webelement.WebElement
method), 67
find_element_by_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_element_by_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_element_by_name() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 60
find_element_by_name() (sele-
nium.webdriver.remote.webelement.WebElement
method), 68
find_element_by_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_element_by_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
find_element_by_partial_link_text() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 60
find_element_by_partial_link_text() (sele-
nium.webdriver.remote.webelement.WebElement
method), 68
find_element_by_partial_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_element_by_partial_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
find_element_by_tag_name() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 60
find_element_by_tag_name() (sele-
nium.webdriver.remote.webelement.WebElement
method), 68
find_element_by_tag_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_element_by_tag_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
find_element_by_xpath() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 60
find_element_by_xpath() (sele-
nium.webdriver.remote.webelement.WebElement
method), 68
find_element_by_xpath() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_element_by_xpath() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
FIND_ELEMENTS (sele-
nium.webdriver.remote.command.Command
attribute), 73
find_elements() (selenium.webdriver.remote.webdriver.WebDriver
method), 61
find_elements() (selenium.webdriver.remote.webelement.WebElement
method), 69
find_elements() (selenium.webdriver.support.event_firing_webdriver.EventF
method), 88
find_elements() (selenium.webdriver.support.event_firing_webdriver.EventF
Index 109
Selenium Python Bindings, Release 2
method), 89
find_elements_by_class_name() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 61
find_elements_by_class_name() (sele-
nium.webdriver.remote.webelement.WebElement
method), 69
find_elements_by_class_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_elements_by_class_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_elements_by_css_selector() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 61
find_elements_by_css_selector() (sele-
nium.webdriver.remote.webelement.WebElement
method), 69
find_elements_by_css_selector() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_elements_by_css_selector() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_elements_by_id() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 61
find_elements_by_id() (sele-
nium.webdriver.remote.webelement.WebElement
method), 69
find_elements_by_id() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_elements_by_id() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_elements_by_link_text() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 61
find_elements_by_link_text() (sele-
nium.webdriver.remote.webelement.WebElement
method), 69
find_elements_by_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
find_elements_by_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
method), 89
find_elements_by_name() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 62
find_elements_by_name() (sele-
nium.webdriver.remote.webelement.WebElement
method), 70
find_elements_by_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_elements_by_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
find_elements_by_partial_link_text() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 62
find_elements_by_partial_link_text() (sele-
nium.webdriver.remote.webelement.WebElement
method), 70
find_elements_by_partial_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_elements_by_partial_link_text() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
find_elements_by_tag_name() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 62
find_elements_by_tag_name() (sele-
nium.webdriver.remote.webelement.WebElement
method), 70
find_elements_by_tag_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_elements_by_tag_name() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
find_elements_by_xpath() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 62
find_elements_by_xpath() (sele-
nium.webdriver.remote.webelement.WebElement
method), 70
find_elements_by_xpath() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebD
method), 88
find_elements_by_xpath() (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebE
method), 89
FIREFOX (selenium.webdriver.common.desired_capabilities.DesiredCapab
attribute), 44
firefox_profile (selenium.webdriver.firefox.webdriver.WebDriver
attribute), 51
FirefoxBinary (class in sele-
nium.webdriver.firefox.firefox_binary), 52
FirefoxProfile (class in sele-
nium.webdriver.firefox.firefox_profile), 52
first_selected_option (sele-
nium.webdriver.support.select.Select attribute),
86
110 Index
Selenium Python Bindings, Release 2
FLICK (selenium.webdriver.remote.command.Command
attribute), 73
flick() (selenium.webdriver.common.touch_actions.TouchActions
method), 44
flick_element() (selenium.webdriver.common.touch_actions.TouchActions
method), 44
format_json() (in module sele-
nium.webdriver.remote.utils), 79
forward() (selenium.webdriver.remote.webdriver.WebDriver
method), 62
forward() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
frame_to_be_available_and_switch_to_it (class in sele-
nium.webdriver.support.expected_conditions),
91
free_port() (in module sele-
nium.webdriver.common.utils), 47
from_string() (selenium.webdriver.support.color.Color
static method), 87
ftp_proxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
ftpProxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
FULLSCREEN_WINDOW (sele-
nium.webdriver.remote.command.Command
attribute), 74
fullscreen_window() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 62
G
GET (selenium.webdriver.remote.command.Command
attribute), 74
get() (selenium.webdriver.remote.webdriver.WebDriver
method), 62
get() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
GET_ACTIVE_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ALERT_TEXT (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ALL_COOKIES (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ALL_SESSIONS (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_APP_CACHE (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_APP_CACHE_STATUS (sele-
nium.webdriver.remote.command.Command
attribute), 74
get_attribute() (selenium.webdriver.remote.webelement.WebElement
method), 71
GET_AVAILABLE_LOG_TYPES (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_COOKIE (selenium.webdriver.remote.command.Command
attribute), 74
get_cookie() (selenium.webdriver.remote.webdriver.WebDriver
method), 62
get_cookies() (selenium.webdriver.remote.webdriver.WebDriver
method), 62
GET_CURRENT_URL (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_CURRENT_WINDOW_HANDLE (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_ATTRIBUTE (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_LOCATION (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_LOCATION_ONCE_SCROLLED_INTO_VIEW
(selenium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_PROPERTY (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_RECT (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_SIZE (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_TAG_NAME (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_TEXT (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_VALUE (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_ELEMENT_VALUE_OF_CSS_PROPERTY (se-
lenium.webdriver.remote.command.Command
attribute), 74
GET_LOCAL_STORAGE_ITEM (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_LOCAL_STORAGE_KEYS (sele-
nium.webdriver.remote.command.Command
attribute), 74
Index 111
Selenium Python Bindings, Release 2
GET_LOCAL_STORAGE_SIZE (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_LOCATION (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_LOG (selenium.webdriver.remote.command.Command
attribute), 74
get_log() (selenium.webdriver.remote.webdriver.WebDriver
method), 63
get_network_conditions() (sele-
nium.webdriver.chrome.webdriver.WebDriver
method), 54
GET_NETWORK_CONNECTION (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_PAGE_SOURCE (sele-
nium.webdriver.remote.command.Command
attribute), 74
get_permission() (selenium.webdriver.safari.webdriver.WebDriver
method), 84
get_property() (selenium.webdriver.remote.webelement.WebElement
method), 71
get_remote_connection_headers() (sele-
nium.webdriver.remote.remote_connection.RemoteConnection
class method), 79
GET_SCREEN_ORIENTATION (sele-
nium.webdriver.remote.command.Command
attribute), 74
get_screenshot_as_base64() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 63
get_screenshot_as_file() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 63
get_screenshot_as_png() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 63
GET_SESSION_STORAGE_ITEM (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_SESSION_STORAGE_KEYS (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_SESSION_STORAGE_SIZE (sele-
nium.webdriver.remote.command.Command
attribute), 74
get_timeout() (selenium.webdriver.remote.remote_connection.RemoteConnection
class method), 79
GET_TITLE (selenium.webdriver.remote.command.Command
attribute), 74
GET_WINDOW_HANDLES (sele-
nium.webdriver.remote.command.Command
attribute), 74
GET_WINDOW_POSITION (sele-
nium.webdriver.remote.command.Command
attribute), 74
get_window_position() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 63
GET_WINDOW_RECT (sele-
nium.webdriver.remote.command.Command
attribute), 75
get_window_rect() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 63
GET_WINDOW_SIZE (sele-
nium.webdriver.remote.command.Command
attribute), 75
get_window_size() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 63
GO_BACK (selenium.webdriver.remote.command.Command
attribute), 75
GO_FORWARD (selenium.webdriver.remote.command.Command
attribute), 75
H
headless (selenium.webdriver.chrome.options.Options at-
tribute), 56
headless (selenium.webdriver.firefox.options.Options at-
tribute), 51
HELP (selenium.webdriver.common.keys.Keys at-
tribute), 42
hex (selenium.webdriver.support.color.Color attribute),
87
HOME (selenium.webdriver.common.keys.Keys at-
tribute), 42
HTMLUNIT (selenium.webdriver.common.desired_capabilities.DesiredCap
attribute), 44
HTMLUNITWITHJS (sele-
nium.webdriver.common.desired_capabilities.DesiredCapabilities
attribute), 44
http_proxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
httpProxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
I
ID (selenium.webdriver.common.by.By attribute), 43
id (selenium.webdriver.remote.webelement.WebElement
attribute), 72
IDLE (selenium.webdriver.common.html5.application_cache.ApplicationCa
attribute), 49
IME_ENGINE_ACTIVATION_FAILED (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
112 Index
Selenium Python Bindings, Release 2
IME_NOT_AVAILABLE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
ImeActivationFailedException, 33
ImeNotAvailableException, 33
IMPLICIT_WAIT (sele-
nium.webdriver.remote.command.Command
attribute), 75
implicitly_wait() (selenium.webdriver.remote.webdriver.WebDriver
method), 63
INSECURE_CERTIFICATE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
InsecureCertificateException, 33
INSERT (selenium.webdriver.common.keys.Keys at-
tribute), 42
install_addon() (selenium.webdriver.firefox.webdriver.WebDriver
method), 50
INTERNETEXPLORER (sele-
nium.webdriver.common.desired_capabilities.DesiredCapabilities
attribute), 44
INVALID_ARGUMENT (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_COOKIE_DOMAIN (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_COORDINATES (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_ELEMENT_COORDINATES (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_ELEMENT_STATE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_SELECTOR (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_SESSION_ID (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_XPATH_SELECTOR (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
INVALID_XPATH_SELECTOR_RETURN_TYPER
(selenium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
InvalidArgumentException, 33
InvalidCookieDomainException, 33
InvalidCoordinatesException, 33
InvalidElementStateException, 34
InvalidSelectorException, 34
InvalidSessionIdException, 34
InvalidSwitchToTargetException, 34
invisibility_of_element (class in sele-
nium.webdriver.support.expected_conditions),
91
invisibility_of_element_located (class in sele-
nium.webdriver.support.expected_conditions),
91
IPAD (selenium.webdriver.common.desired_capabilities.DesiredCapabilitie
attribute), 44
IPHONE (selenium.webdriver.common.desired_capabilities.DesiredCapabil
attribute), 44
is_connectable() (in module sele-
nium.webdriver.common.utils), 47
is_connectable() (selenium.webdriver.common.service.Service
method), 48
is_connectable() (selenium.webdriver.firefox.extension_connection.Extensio
class method), 53
is_displayed() (selenium.webdriver.remote.webelement.WebElement
method), 71
IS_ELEMENT_DISPLAYED (sele-
nium.webdriver.remote.command.Command
attribute), 75
IS_ELEMENT_ENABLED (sele-
nium.webdriver.remote.command.Command
attribute), 75
IS_ELEMENT_SELECTED (sele-
nium.webdriver.remote.command.Command
attribute), 75
is_enabled() (selenium.webdriver.remote.webelement.WebElement
method), 71
is_selected() (selenium.webdriver.remote.webelement.WebElement
method), 71
is_url_connectable() (in module sele-
nium.webdriver.common.utils), 47
J
JAVASCRIPT_ERROR (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
JavascriptException, 34
join_host_port() (in module sele-
nium.webdriver.common.utils), 48
K
KEY (selenium.webdriver.chrome.options.Options
attribute), 56
KEY (selenium.webdriver.firefox.options.Options at-
tribute), 51
key_down() (selenium.webdriver.common.action_chains.ActionChains
method), 38
key_up() (selenium.webdriver.common.action_chains.ActionChains
method), 39
Keys (class in selenium.webdriver.common.keys), 41
Index 113
Selenium Python Bindings, Release 2
keys_to_typing() (in module sele-
nium.webdriver.common.utils), 48
kill() (selenium.webdriver.firefox.firefox_binary.FirefoxBinary
method), 53
L
launch_app() (selenium.webdriver.chrome.webdriver.WebDriver
method), 55
launch_browser() (sele-
nium.webdriver.firefox.firefox_binary.FirefoxBinary
method), 53
LEFT (selenium.webdriver.common.keys.Keys attribute),
42
LEFT_ALT (selenium.webdriver.common.keys.Keys at-
tribute), 42
LEFT_CONTROL (sele-
nium.webdriver.common.keys.Keys attribute),
42
LEFT_SHIFT (selenium.webdriver.common.keys.Keys
attribute), 42
LINK_TEXT (selenium.webdriver.common.by.By
attribute), 43
load() (selenium.webdriver.common.proxy.ProxyType
class method), 47
load_json() (in module selenium.webdriver.remote.utils),
79
location (selenium.webdriver.remote.webelement.WebElement
attribute), 72
location_once_scrolled_into_view (sele-
nium.webdriver.remote.webelement.WebElement
attribute), 72
Log (class in selenium.webdriver.firefox.options), 51
log_types (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
LONG_PRESS (selenium.webdriver.remote.command.Command
attribute), 75
long_press() (selenium.webdriver.common.touch_actions.TouchActions
method), 45
M
make() (selenium.webdriver.common.proxy.ProxyTypeFactory
static method), 47
MANUAL (selenium.webdriver.common.proxy.ProxyType
attribute), 47
MAXIMIZE_WINDOW (sele-
nium.webdriver.remote.command.Command
attribute), 75
maximize_window() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 64
META (selenium.webdriver.common.keys.Keys at-
tribute), 42
METHOD_NOT_ALLOWED (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
MINIMIZE_WINDOW (sele-
nium.webdriver.remote.command.Command
attribute), 75
minimize_window() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 64
Mobile (class in selenium.webdriver.remote.mobile), 78
mobile (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
Mobile.ConnectionType (class in sele-
nium.webdriver.remote.mobile), 78
MOUSE_DOWN (sele-
nium.webdriver.remote.command.Command
attribute), 75
MOUSE_UP (selenium.webdriver.remote.command.Command
attribute), 75
move() (selenium.webdriver.common.touch_actions.TouchActions
method), 45
move_by_offset() (sele-
nium.webdriver.common.action_chains.ActionChains
method), 39
MOVE_TARGET_OUT_OF_BOUNDS (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
MOVE_TO (selenium.webdriver.remote.command.Command
attribute), 75
move_to_element() (sele-
nium.webdriver.common.action_chains.ActionChains
method), 39
move_to_element_with_offset() (sele-
nium.webdriver.common.action_chains.ActionChains
method), 39
MoveTargetOutOfBoundsException, 34
MULTIPLY (selenium.webdriver.common.keys.Keys at-
tribute), 42
N
NAME (selenium.webdriver.common.by.By attribute), 43
name (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
NATIVE_EVENTS_ALLOWED (sele-
nium.webdriver.firefox.webdriver.WebDriver
attribute), 51
native_events_enabled (sele-
nium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
network_connection (sele-
nium.webdriver.remote.mobile.Mobile at-
tribute), 78
NEW_SESSION (sele-
nium.webdriver.remote.command.Command
attribute), 75
114 Index
Selenium Python Bindings, Release 2
new_window_is_opened (class in sele-
nium.webdriver.support.expected_conditions),
91
NO_ALERT_OPEN (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
NO_FOCUS_LIBRARY_NAME (sele-
nium.webdriver.firefox.firefox_binary.FirefoxBinary
attribute), 53
no_proxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
NO_SUCH_COOKIE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
NO_SUCH_ELEMENT (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
NO_SUCH_FRAME (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
NO_SUCH_WINDOW (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
NoAlertPresentException, 34
noProxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
NoSuchAttributeException, 35
NoSuchCookieException, 35
NoSuchElementException, 35
NoSuchFrameException, 35
NoSuchWindowException, 35
NULL (selenium.webdriver.common.keys.Keys at-
tribute), 42
number_of_windows_to_be (class in sele-
nium.webdriver.support.expected_conditions),
91
NUMPAD0 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD1 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD2 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD3 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD4 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD5 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD6 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD7 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD8 (selenium.webdriver.common.keys.Keys at-
tribute), 42
NUMPAD9 (selenium.webdriver.common.keys.Keys at-
tribute), 42
O
OBSOLETE (selenium.webdriver.common.html5.application_cache.Applic
attribute), 49
on_exception() (selenium.webdriver.support.abstract_event_listener.Abstrac
method), 90
OPERA (selenium.webdriver.common.desired_capabilities.DesiredCapabili
attribute), 44
OperaDriver (class in sele-
nium.webdriver.opera.webdriver), 81
Options (class in selenium.webdriver.chrome.options), 55
Options (class in selenium.webdriver.firefox.options), 51
options (selenium.webdriver.support.select.Select at-
tribute), 86
orientation (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
P
PAC (selenium.webdriver.common.proxy.ProxyType at-
tribute), 47
PAGE_DOWN (selenium.webdriver.common.keys.Keys
attribute), 42
page_source (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
PAGE_UP (selenium.webdriver.common.keys.Keys at-
tribute), 42
parent (selenium.webdriver.remote.webelement.WebElement
attribute), 72
PARTIAL_LINK_TEXT (sele-
nium.webdriver.common.by.By attribute),
43
path (selenium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
PAUSE (selenium.webdriver.common.keys.Keys at-
tribute), 42
pause() (selenium.webdriver.common.action_chains.ActionChains
method), 39
perform() (selenium.webdriver.common.action_chains.ActionChains
method), 39
perform() (selenium.webdriver.common.touch_actions.TouchActions
method), 45
PHANTOMJS (selenium.webdriver.common.desired_capabilities.DesiredCa
attribute), 44
port (selenium.webdriver.firefox.firefox_profile.FirefoxProfile
attribute), 52
preferences (selenium.webdriver.firefox.options.Options
attribute), 51
presence_of_all_elements_located (class in sele-
nium.webdriver.support.expected_conditions),
91
presence_of_element_located (class in sele-
nium.webdriver.support.expected_conditions),
Index 115
Selenium Python Bindings, Release 2
92
profile (selenium.webdriver.firefox.options.Options at-
tribute), 51
Proxy (class in selenium.webdriver.common.proxy), 46
proxy (selenium.webdriver.firefox.options.Options
attribute), 51
proxy_autoconfig_url (sele-
nium.webdriver.common.proxy.Proxy at-
tribute), 46
proxy_type (selenium.webdriver.common.proxy.Proxy
attribute), 46
proxyAutoconfigUrl (sele-
nium.webdriver.common.proxy.Proxy at-
tribute), 46
ProxyType (class in selenium.webdriver.common.proxy),
47
proxyType (selenium.webdriver.common.proxy.Proxy at-
tribute), 46
ProxyTypeFactory (class in sele-
nium.webdriver.common.proxy), 47
Q
QUIT (selenium.webdriver.remote.command.Command
attribute), 75
quit() (selenium.webdriver.chrome.webdriver.WebDriver
method), 55
quit() (selenium.webdriver.firefox.extension_connection.ExtensionConnection
method), 53
quit() (selenium.webdriver.firefox.webdriver.WebDriver
method), 50
quit() (selenium.webdriver.ie.webdriver.WebDriver
method), 80
quit() (selenium.webdriver.phantomjs.webdriver.WebDriver
method), 83
quit() (selenium.webdriver.remote.webdriver.WebDriver
method), 64
quit() (selenium.webdriver.safari.webdriver.WebDriver
method), 84
quit() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
method), 88
R
rect (selenium.webdriver.remote.webelement.WebElement
attribute), 72
REFRESH (selenium.webdriver.remote.command.Command
attribute), 75
refresh() (selenium.webdriver.remote.webdriver.WebDriver
method), 64
release() (selenium.webdriver.common.action_chains.ActionChains
method), 39
release() (selenium.webdriver.common.touch_actions.TouchActions
method), 45
RemoteConnection (class in sele-
nium.webdriver.remote.remote_connection),
78
RemoteDriverServerException, 35
REMOVE_LOCAL_STORAGE_ITEM (sele-
nium.webdriver.remote.command.Command
attribute), 75
REMOVE_SESSION_STORAGE_ITEM (sele-
nium.webdriver.remote.command.Command
attribute), 75
RESERVED_1 (selenium.webdriver.common.proxy.ProxyType
attribute), 47
reset_actions() (selenium.webdriver.common.action_chains.ActionChains
method), 39
reset_timeout() (selenium.webdriver.remote.remote_connection.RemoteCon
class method), 79
RETURN (selenium.webdriver.common.keys.Keys at-
tribute), 42
rgb (selenium.webdriver.support.color.Color attribute), 87
rgba (selenium.webdriver.support.color.Color attribute),
87
RIGHT (selenium.webdriver.common.keys.Keys at-
tribute), 42
S
SAFARI (selenium.webdriver.common.desired_capabilities.DesiredCapabil
attribute), 44
save_screenshot() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 64
SCREENSHOT (selenium.webdriver.remote.command.Command
attribute), 75
screenshot() (selenium.webdriver.remote.webelement.WebElement
method), 71
screenshot_as_base64 (sele-
nium.webdriver.remote.webelement.WebElement
attribute), 72
screenshot_as_png (sele-
nium.webdriver.remote.webelement.WebElement
attribute), 72
ScreenshotException, 35
SCRIPT_TIMEOUT (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
scroll() (selenium.webdriver.common.touch_actions.TouchActions
method), 45
scroll_from_element() (sele-
nium.webdriver.common.touch_actions.TouchActions
method), 45
Select (class in selenium.webdriver.support.select), 85
select_by_index() (sele-
nium.webdriver.support.select.Select method),
85
select_by_value() (sele-
nium.webdriver.support.select.Select method),
85
116 Index
Selenium Python Bindings, Release 2
select_by_visible_text() (sele-
nium.webdriver.support.select.Select method),
86
selenium.common.exceptions (module), 32
selenium.webdriver.android.webdriver (module), 81
selenium.webdriver.chrome.options (module), 55
selenium.webdriver.chrome.service (module), 56
selenium.webdriver.chrome.webdriver (module), 54
selenium.webdriver.common.action_chains (module), 37
selenium.webdriver.common.alert (module), 40
selenium.webdriver.common.by (module), 43
selenium.webdriver.common.desired_capabilities (mod-
ule), 43
selenium.webdriver.common.html5.application_cache
(module), 48
selenium.webdriver.common.keys (module), 41
selenium.webdriver.common.proxy (module), 46
selenium.webdriver.common.service (module), 48
selenium.webdriver.common.touch_actions (module), 44
selenium.webdriver.common.utils (module), 47
selenium.webdriver.firefox.extension_connection (mod-
ule), 53
selenium.webdriver.firefox.firefox_binary (module), 52
selenium.webdriver.firefox.firefox_profile (module), 52
selenium.webdriver.firefox.options (module), 51
selenium.webdriver.firefox.webdriver (module), 49
selenium.webdriver.ie.webdriver (module), 80
selenium.webdriver.opera.webdriver (module), 81
selenium.webdriver.phantomjs.service (module), 83
selenium.webdriver.phantomjs.webdriver (module), 82
selenium.webdriver.remote.command (module), 73
selenium.webdriver.remote.errorhandler (module), 76
selenium.webdriver.remote.mobile (module), 78
selenium.webdriver.remote.remote_connection (module),
78
selenium.webdriver.remote.utils (module), 79
selenium.webdriver.remote.webdriver (module), 56
selenium.webdriver.remote.webelement (module), 66
selenium.webdriver.safari.service (module), 84
selenium.webdriver.safari.webdriver (module), 83
selenium.webdriver.support.abstract_event_listener
(module), 89
selenium.webdriver.support.color (module), 87
selenium.webdriver.support.event_firing_webdriver
(module), 87
selenium.webdriver.support.expected_conditions (mod-
ule), 90
selenium.webdriver.support.select (module), 85
selenium.webdriver.support.wait (module), 86
SEMICOLON (selenium.webdriver.common.keys.Keys
attribute), 42
send_keys() (selenium.webdriver.common.action_chains.ActionChains
method), 39
send_keys() (selenium.webdriver.common.alert.Alert
method), 40
send_keys() (selenium.webdriver.remote.webelement.WebElement
method), 71
send_keys() (selenium.webdriver.support.event_firing_webdriver.EventFirin
method), 89
SEND_KEYS_TO_ACTIVE_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 75
SEND_KEYS_TO_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 75
send_keys_to_element() (sele-
nium.webdriver.common.action_chains.ActionChains
method), 40
send_remote_shutdown_command() (sele-
nium.webdriver.common.service.Service
method), 48
send_remote_shutdown_command() (sele-
nium.webdriver.phantomjs.service.Service
method), 83
SEPARATOR (selenium.webdriver.common.keys.Keys
attribute), 42
Service (class in selenium.webdriver.chrome.service), 56
Service (class in selenium.webdriver.common.service),
48
Service (class in selenium.webdriver.phantomjs.service),
83
Service (class in selenium.webdriver.safari.service), 84
service_url (selenium.webdriver.common.service.Service
attribute), 48
service_url (selenium.webdriver.phantomjs.service.Service
attribute), 83
service_url (selenium.webdriver.safari.service.Service at-
tribute), 84
SESSION_NOT_CREATED (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
SessionNotCreatedException, 36
SET_ALERT_CREDENTIALS (sele-
nium.webdriver.remote.command.Command
attribute), 75
SET_ALERT_VALUE (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_capability() (selenium.webdriver.chrome.options.Options
method), 55
set_capability() (selenium.webdriver.firefox.options.Options
method), 51
set_context() (selenium.webdriver.firefox.webdriver.WebDriver
method), 50
SET_ELEMENT_SELECTED (sele-
nium.webdriver.remote.command.Command
attribute), 75
Index 117
Selenium Python Bindings, Release 2
set_headless() (selenium.webdriver.chrome.options.Options
method), 55
set_headless() (selenium.webdriver.firefox.options.Options
method), 51
SET_LOCAL_STORAGE_ITEM (sele-
nium.webdriver.remote.command.Command
attribute), 75
SET_LOCATION (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_network_conditions() (sele-
nium.webdriver.chrome.webdriver.WebDriver
method), 55
SET_NETWORK_CONNECTION (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_network_connection() (sele-
nium.webdriver.remote.mobile.Mobile
method), 78
set_page_load_timeout() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 64
set_permission() (selenium.webdriver.safari.webdriver.WebDriver
method), 84
set_preference() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile
method), 52
set_preference() (selenium.webdriver.firefox.options.Options
method), 51
set_proxy() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile
method), 52
SET_SCREEN_ORIENTATION (sele-
nium.webdriver.remote.command.Command
attribute), 75
SET_SCRIPT_TIMEOUT (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_script_timeout() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 64
SET_SESSION_STORAGE_ITEM (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_timeout() (selenium.webdriver.remote.remote_connection.RemoteConnection
class method), 79
SET_TIMEOUTS (sele-
nium.webdriver.remote.command.Command
attribute), 75
SET_WINDOW_POSITION (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_window_position() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 64
SET_WINDOW_RECT (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_window_rect() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 64
SET_WINDOW_SIZE (sele-
nium.webdriver.remote.command.Command
attribute), 75
set_window_size() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 65
SHIFT (selenium.webdriver.common.keys.Keys at-
tribute), 42
SINGLE_TAP (selenium.webdriver.remote.command.Command
attribute), 75
size (selenium.webdriver.remote.webelement.WebElement
attribute), 72
socks_password (selenium.webdriver.common.proxy.Proxy
attribute), 46
socks_proxy (selenium.webdriver.common.proxy.Proxy
attribute), 46
socks_username (selenium.webdriver.common.proxy.Proxy
attribute), 46
socksPassword (selenium.webdriver.common.proxy.Proxy
attribute), 46
socksProxy (selenium.webdriver.common.proxy.Proxy
attribute), 46
socksUsername (selenium.webdriver.common.proxy.Proxy
attribute), 46
SPACE (selenium.webdriver.common.keys.Keys at-
tribute), 42
ssl_proxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 47
sslProxy (selenium.webdriver.common.proxy.Proxy at-
tribute), 47
STALE_ELEMENT_REFERENCE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
StaleElementReferenceException, 36
staleness_of (class in sele-
nium.webdriver.support.expected_conditions),
92
start() (selenium.webdriver.common.service.Service
method), 48
start_client() (selenium.webdriver.remote.webdriver.WebDriver
method), 65
start_session() (selenium.webdriver.remote.webdriver.WebDriver
method), 65
status (selenium.webdriver.common.html5.application_cache.ApplicationCa
attribute), 49
STATUS (selenium.webdriver.remote.command.Command
attribute), 76
stop() (selenium.webdriver.common.service.Service
method), 48
118 Index
Selenium Python Bindings, Release 2
stop_client() (selenium.webdriver.remote.webdriver.WebDriver
method), 65
submit() (selenium.webdriver.remote.webelement.WebElement
method), 72
SUBMIT_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 76
SUBTRACT (selenium.webdriver.common.keys.Keys at-
tribute), 42
SUCCESS (selenium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
switch_to (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
switch_to_active_element() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 65
switch_to_alert() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 65
SWITCH_TO_CONTEXT (sele-
nium.webdriver.remote.command.Command
attribute), 76
switch_to_default_content() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 65
SWITCH_TO_FRAME (sele-
nium.webdriver.remote.command.Command
attribute), 76
switch_to_frame() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 65
SWITCH_TO_PARENT_FRAME (sele-
nium.webdriver.remote.command.Command
attribute), 76
SWITCH_TO_WINDOW (sele-
nium.webdriver.remote.command.Command
attribute), 76
switch_to_window() (sele-
nium.webdriver.remote.webdriver.WebDriver
method), 65
SYSTEM (selenium.webdriver.common.proxy.ProxyType
attribute), 47
T
TAB (selenium.webdriver.common.keys.Keys attribute),
42
TAG_NAME (selenium.webdriver.common.by.By
attribute), 43
tag_name (selenium.webdriver.remote.webelement.WebElement
attribute), 72
tap() (selenium.webdriver.common.touch_actions.TouchActions
method), 45
tap_and_hold() (selenium.webdriver.common.touch_actions.TouchActions
method), 45
text (selenium.webdriver.common.alert.Alert attribute),
40
text (selenium.webdriver.remote.webelement.WebElement
attribute), 73
text_to_be_present_in_element (class in sele-
nium.webdriver.support.expected_conditions),
92
text_to_be_present_in_element_value (class in sele-
nium.webdriver.support.expected_conditions),
92
TIMEOUT (selenium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
TimeoutException, 36
title (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
title_contains (class in sele-
nium.webdriver.support.expected_conditions),
92
title_is (class in sele-
nium.webdriver.support.expected_conditions),
92
to_capabilities() (selenium.webdriver.chrome.options.Options
method), 56
to_capabilities() (selenium.webdriver.firefox.options.Log
method), 51
to_capabilities() (selenium.webdriver.firefox.options.Options
method), 51
TOUCH_DOWN (sele-
nium.webdriver.remote.command.Command
attribute), 76
TOUCH_MOVE (selenium.webdriver.remote.command.Command
attribute), 76
TOUCH_SCROLL (sele-
nium.webdriver.remote.command.Command
attribute), 76
TOUCH_UP (selenium.webdriver.remote.command.Command
attribute), 76
TouchActions (class in sele-
nium.webdriver.common.touch_actions),
44
U
UNABLE_TO_CAPTURE_SCREEN (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
UNABLE_TO_SET_COOKIE (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
UnableToSetCookieException, 36
UNCACHED (selenium.webdriver.common.html5.application_cache.Applic
attribute), 49
UNEXPECTED_ALERT_OPEN (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
Index 119
Selenium Python Bindings, Release 2
UnexpectedAlertPresentException, 36
UnexpectedTagNameException, 36
uninstall_addon() (sele-
nium.webdriver.firefox.webdriver.WebDriver
method), 50
UNKNOWN_COMMAND (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
UNKNOWN_ERROR (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
UNKNOWN_METHOD (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
UnknownMethodException, 37
UNSPECIFIED (selenium.webdriver.common.proxy.ProxyType
attribute), 47
until() (selenium.webdriver.support.wait.WebDriverWait
method), 86
until_not() (selenium.webdriver.support.wait.WebDriverWait
method), 87
unzip_to_temp_dir() (in module sele-
nium.webdriver.remote.utils), 79
UP (selenium.webdriver.common.keys.Keys attribute), 42
update_preferences() (sele-
nium.webdriver.firefox.firefox_profile.FirefoxProfile
method), 52
UPDATE_READY (sele-
nium.webdriver.common.html5.application_cache.ApplicationCache
attribute), 49
UPLOAD_FILE (selenium.webdriver.remote.command.Command
attribute), 76
url_changes (class in sele-
nium.webdriver.support.expected_conditions),
92
url_contains (class in sele-
nium.webdriver.support.expected_conditions),
92
url_matches (class in sele-
nium.webdriver.support.expected_conditions),
93
url_to_be (class in sele-
nium.webdriver.support.expected_conditions),
93
V
value_of_css_property() (sele-
nium.webdriver.remote.webelement.WebElement
method), 72
visibility_of (class in sele-
nium.webdriver.support.expected_conditions),
93
visibility_of_all_elements_located (class in sele-
nium.webdriver.support.expected_conditions),
93
visibility_of_any_elements_located (class in sele-
nium.webdriver.support.expected_conditions),
93
visibility_of_element_located (class in sele-
nium.webdriver.support.expected_conditions),
93
W
W3C_ACCEPT_ALERT (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_ACTIONS (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_CLEAR_ACTIONS (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_DISMISS_ALERT (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_EXECUTE_SCRIPT (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_EXECUTE_SCRIPT_ASYNC (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_GET_ACTIVE_ELEMENT (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_GET_ALERT_TEXT (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_GET_CURRENT_WINDOW_HANDLE (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_GET_WINDOW_HANDLES (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_GET_WINDOW_POSITION (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_GET_WINDOW_SIZE (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_MAXIMIZE_WINDOW (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_SET_ALERT_VALUE (sele-
nium.webdriver.remote.command.Command
attribute), 76
W3C_SET_WINDOW_POSITION (sele-
nium.webdriver.remote.command.Command
attribute), 76
120 Index
Selenium Python Bindings, Release 2
W3C_SET_WINDOW_SIZE (sele-
nium.webdriver.remote.command.Command
attribute), 76
WebDriver (class in sele-
nium.webdriver.android.webdriver), 81
WebDriver (class in sele-
nium.webdriver.chrome.webdriver), 54
WebDriver (class in sele-
nium.webdriver.firefox.webdriver), 49
WebDriver (class in selenium.webdriver.ie.webdriver), 80
WebDriver (class in sele-
nium.webdriver.opera.webdriver), 82
WebDriver (class in sele-
nium.webdriver.phantomjs.webdriver), 82
WebDriver (class in sele-
nium.webdriver.remote.webdriver), 56
WebDriver (class in sele-
nium.webdriver.safari.webdriver), 83
WebDriver.ServiceType (class in sele-
nium.webdriver.opera.webdriver), 82
WebDriverException, 37
WebDriverWait (class in sele-
nium.webdriver.support.wait), 86
WebElement (class in sele-
nium.webdriver.remote.webelement), 66
WEBKITGTK (selenium.webdriver.common.desired_capabilities.DesiredCapabilities
attribute), 44
which() (selenium.webdriver.firefox.firefox_binary.FirefoxBinary
method), 53
wifi (selenium.webdriver.remote.mobile.Mobile.ConnectionType
attribute), 78
WIFI_NETWORK (sele-
nium.webdriver.remote.mobile.Mobile at-
tribute), 78
window_handles (selenium.webdriver.remote.webdriver.WebDriver
attribute), 66
wrapped_driver (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver
attribute), 88
wrapped_element (sele-
nium.webdriver.support.event_firing_webdriver.EventFiringWebElement
attribute), 89
X
XPATH (selenium.webdriver.common.by.By attribute),
43
XPATH_LOOKUP_ERROR (sele-
nium.webdriver.remote.errorhandler.ErrorCode
attribute), 77
Index 121
Ad

More Related Content

What's hot (20)

Android Chromium Rendering Pipeline
Android Chromium Rendering PipelineAndroid Chromium Rendering Pipeline
Android Chromium Rendering Pipeline
Hyungwook Lee
 
Vue.js
Vue.jsVue.js
Vue.js
Jadson Santos
 
Laravel ppt
Laravel pptLaravel ppt
Laravel ppt
Mayank Panchal
 
Thymeleaf and Spring Controllers.ppt
Thymeleaf and Spring Controllers.pptThymeleaf and Spring Controllers.ppt
Thymeleaf and Spring Controllers.ppt
Patiento Del Mar
 
Laravel Tutorial PPT
Laravel Tutorial PPTLaravel Tutorial PPT
Laravel Tutorial PPT
Piyush Aggarwal
 
MVC - Introduction
MVC - IntroductionMVC - Introduction
MVC - Introduction
Sudhakar Sharma
 
Introduction to REST - API
Introduction to REST - APIIntroduction to REST - API
Introduction to REST - API
Chetan Gadodia
 
AEM Sightly Template Language
AEM Sightly Template LanguageAEM Sightly Template Language
AEM Sightly Template Language
Gabriel Walt
 
Introduction to spring boot
Introduction to spring bootIntroduction to spring boot
Introduction to spring boot
Santosh Kumar Kar
 
Test automation of ap is using postman
Test automation of ap is using postmanTest automation of ap is using postman
Test automation of ap is using postman
BugRaptors
 
Javabeans .pdf
Javabeans .pdfJavabeans .pdf
Javabeans .pdf
Rajkiran Mummadi
 
PHP - Introduction to PHP Fundamentals
PHP -  Introduction to PHP FundamentalsPHP -  Introduction to PHP Fundamentals
PHP - Introduction to PHP Fundamentals
Vibrant Technologies & Computers
 
Client-Side Performance Testing
Client-Side Performance TestingClient-Side Performance Testing
Client-Side Performance Testing
Anand Bagmar
 
Scaling Your Web Application
Scaling Your Web ApplicationScaling Your Web Application
Scaling Your Web Application
Ketan Deshmukh
 
Code igniter - A brief introduction
Code igniter - A brief introductionCode igniter - A brief introduction
Code igniter - A brief introduction
Commit University
 
laravel.pptx
laravel.pptxlaravel.pptx
laravel.pptx
asif290119
 
The Beginner’s Guide To Spring Cloud
The Beginner’s Guide To Spring CloudThe Beginner’s Guide To Spring Cloud
The Beginner’s Guide To Spring Cloud
VMware Tanzu
 
Api presentation
Api presentationApi presentation
Api presentation
Tiago Cardoso
 
Codeigniter framework
Codeigniter framework Codeigniter framework
Codeigniter framework
baabtra.com - No. 1 supplier of quality freshers
 
Curso de Java Persistence API (JPA) (Java EE 7)
Curso de Java Persistence API (JPA) (Java EE 7)Curso de Java Persistence API (JPA) (Java EE 7)
Curso de Java Persistence API (JPA) (Java EE 7)
Helder da Rocha
 

Similar to Selenium python (20)

Php myadmin documentation
Php myadmin documentationPhp myadmin documentation
Php myadmin documentation
David Raudales
 
Akka java
Akka javaAkka java
Akka java
dlvladescu
 
Java web programming
Java web programmingJava web programming
Java web programming
Mumbai Academisc
 
Odoo development
Odoo developmentOdoo development
Odoo development
Ramzi Hajjaji
 
Guide citrix presentation server™ - client for java administrator’s
Guide   citrix presentation server™ - client for java administrator’sGuide   citrix presentation server™ - client for java administrator’s
Guide citrix presentation server™ - client for java administrator’s
xKinAnx
 
java web_programming
java web_programmingjava web_programming
java web_programming
bachector
 
Flask docs
Flask docsFlask docs
Flask docs
Kunal Sangwan
 
Ws deployment guide
Ws deployment guideWs deployment guide
Ws deployment guide
KunKun Ng
 
Implementing the ibm storwize v3700
Implementing the ibm storwize v3700Implementing the ibm storwize v3700
Implementing the ibm storwize v3700
Diego Alberto Tamayo
 
Sg248107 Implementing the IBM Storwize V3700
Sg248107 Implementing the IBM Storwize V3700Sg248107 Implementing the IBM Storwize V3700
Sg248107 Implementing the IBM Storwize V3700
Wellington Torrejais da Silva
 
Django
DjangoDjango
Django
Nam Dang
 
IBM Streams - Redbook
IBM Streams - RedbookIBM Streams - Redbook
IBM Streams - Redbook
Pesta Ria Henny Beatrice
 
Selenium documentation 1.0
Selenium documentation 1.0Selenium documentation 1.0
Selenium documentation 1.0
Bharath Marrivada
 
Dexis 9 user manual
Dexis 9 user manualDexis 9 user manual
Dexis 9 user manual
Luis Alberto Díaz Olmedo
 
digital marketing training in bangalore
digital marketing training in bangaloredigital marketing training in bangalore
digital marketing training in bangalore
Venus Tech Inc.
 
Mongo db security-guide
Mongo db security-guideMongo db security-guide
Mongo db security-guide
Dan Llimpe
 
Mongo db security guide
Mongo db security guideMongo db security guide
Mongo db security guide
Deysi Gmarra
 
Sqlmap readme
Sqlmap readmeSqlmap readme
Sqlmap readme
fangjiafu
 
Guia definitiva de shodan
Guia definitiva de shodanGuia definitiva de shodan
Guia definitiva de shodan
noc_313
 
Sg248203
Sg248203Sg248203
Sg248203
Fauzil Rizqi
 
Php myadmin documentation
Php myadmin documentationPhp myadmin documentation
Php myadmin documentation
David Raudales
 
Guide citrix presentation server™ - client for java administrator’s
Guide   citrix presentation server™ - client for java administrator’sGuide   citrix presentation server™ - client for java administrator’s
Guide citrix presentation server™ - client for java administrator’s
xKinAnx
 
java web_programming
java web_programmingjava web_programming
java web_programming
bachector
 
Ws deployment guide
Ws deployment guideWs deployment guide
Ws deployment guide
KunKun Ng
 
Implementing the ibm storwize v3700
Implementing the ibm storwize v3700Implementing the ibm storwize v3700
Implementing the ibm storwize v3700
Diego Alberto Tamayo
 
digital marketing training in bangalore
digital marketing training in bangaloredigital marketing training in bangalore
digital marketing training in bangalore
Venus Tech Inc.
 
Mongo db security-guide
Mongo db security-guideMongo db security-guide
Mongo db security-guide
Dan Llimpe
 
Mongo db security guide
Mongo db security guideMongo db security guide
Mongo db security guide
Deysi Gmarra
 
Sqlmap readme
Sqlmap readmeSqlmap readme
Sqlmap readme
fangjiafu
 
Guia definitiva de shodan
Guia definitiva de shodanGuia definitiva de shodan
Guia definitiva de shodan
noc_313
 
Ad

Recently uploaded (20)

Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Heap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and DeletionHeap, Types of Heap, Insertion and Deletion
Heap, Types of Heap, Insertion and Deletion
Jaydeep Kale
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Ad

Selenium python

  • 1. Selenium Python Bindings Release 2 Baiju Muthukadan Nov 07, 2018
  • 3. Contents 1 Installation 3 1.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 Downloading Python bindings for Selenium . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.3 Drivers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.4 Detailed instructions for Windows users . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.5 Downloading Selenium server . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 2 Getting Started 7 2.1 Simple Usage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.2 Example Explained . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.3 Using Selenium to write tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 2.4 Walk through of the example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 2.5 Using Selenium with remote WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 3 Navigating 13 3.1 Interacting with the page . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 3.2 Filling in forms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 3.3 Drag and drop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 3.4 Moving between windows and frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 3.5 Popup dialogs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 3.6 Navigation: history and location . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 3.7 Cookies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 4 Locating Elements 17 4.1 Locating by Id . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 4.2 Locating by Name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 4.3 Locating by XPath . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 4.4 Locating Hyperlinks by Link Text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 4.5 Locating Elements by Tag Name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 4.6 Locating Elements by Class Name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 4.7 Locating Elements by CSS Selectors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 5 Waits 23 5.1 Explicit Waits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 5.2 Implicit Waits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 6 Page Objects 27 i
  • 4. 6.1 Test case . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 6.2 Page object classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 6.3 Page elements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 6.4 Locators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 7 WebDriver API 31 7.1 Exceptions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 7.2 Action Chains . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 7.3 Alerts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 7.4 Special Keys . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 7.5 Locate elements By . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 7.6 Desired Capabilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 7.7 Touch Actions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 7.8 Proxy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 7.9 Utilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 7.10 Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 7.11 Application Cache . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 7.12 Firefox WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 7.13 Firefox WebDriver Options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 7.14 Firefox WebDriver Profile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52 7.15 Firefox WebDriver Binary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52 7.16 Firefox WebDriver Extension Connection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 7.17 Chrome WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 7.18 Chrome WebDriver Options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55 7.19 Chrome WebDriver Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 7.20 Remote WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 7.21 Remote WebDriver WebElement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66 7.22 Remote WebDriver Command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 7.23 Remote WebDriver Error Handler . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 7.24 Remote WebDriver Mobile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78 7.25 Remote WebDriver Remote Connection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78 7.26 Remote WebDriver Utils . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 7.27 Internet Explorer WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80 7.28 Android WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 7.29 Opera WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81 7.30 PhantomJS WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82 7.31 PhantomJS WebDriver Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83 7.32 Safari WebDriver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83 7.33 Safari WebDriver Service . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 7.34 Select Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 7.35 Wait Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86 7.36 Color Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87 7.37 Event Firing WebDriver Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87 7.38 Abstract Event Listener Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 7.39 Expected conditions Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90 8 Appendix: Frequently Asked Questions 95 8.1 How to use ChromeDriver ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 8.2 Does Selenium 2 support XPath 2.0 ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 8.3 How to scroll down to the bottom of a page ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 8.4 How to auto save files using custom Firefox profile ? . . . . . . . . . . . . . . . . . . . . . . . . . . 96 8.5 How to upload files into file inputs ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 8.6 How to use firebug with Firefox ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97 8.7 How to take screenshot of the current window ? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97 ii
  • 5. 9 Indices and tables 99 Python Module Index 101 iii
  • 6. iv
  • 7. Selenium Python Bindings, Release 2 Author Baiju Muthukadan License This document is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. Note: This is not an official documentation. If you would like to contribute to this documentation, you can fork this project in Github and send pull requests. You can also send your feedback to my email: baiju.m.mail AT gmail DOT com. So far 40+ community members have contributed to this project (See the closed pull requests). I encourage contributors to add more sections and make it a good documentation! Contents 1
  • 8. Selenium Python Bindings, Release 2 2 Contents
  • 9. CHAPTER 1 Installation 1.1 Introduction Selenium Python bindings provides a simple API to write functional/acceptance tests using Selenium WebDriver. Through Selenium Python API you can access all functionalities of Selenium WebDriver in an intuitive way. Selenium Python bindings provide a convenient API to access Selenium WebDrivers like Firefox, Ie, Chrome, Remote etc. The current supported Python versions are 2.7, 3.5 and above. This documentation explains Selenium 2 WebDriver API. Selenium 1 / Selenium RC API is not covered here. 1.2 Downloading Python bindings for Selenium You can download Python bindings for Selenium from the PyPI page for selenium package. However, a better ap- proach would be to use pip to install the selenium package. Python 3.6 has pip available in the standard library. Using pip, you can install selenium like this: pip install selenium You may consider using virtualenv to create isolated Python environments. Python 3.6 has pyvenv which is almost the same as virtualenv. 1.3 Drivers Selenium requires a driver to interface with the chosen browser. Firefox, for example, requires geckodriver, which needs to be installed before the below examples can be run. Make sure it’s in your PATH, e. g., place it in /usr/bin or /usr/local/bin. Failure to observe this step will give you an error selenium.common.exceptions.WebDriverException: Message: ‘geck- odriver’ executable needs to be in PATH. 3
  • 10. Selenium Python Bindings, Release 2 Other supported browsers will have their own drivers available. Links to some of the more popular browser drivers follow. Chrome: https://sites.google.com/a/chromium.org/chromedriver/downloads Edge: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/ Firefox: https://github.com/mozilla/geckodriver/releases Safari: https://webkit.org/blog/6900/webdriver-support-in-safari-10/ 1.4 Detailed instructions for Windows users Note: You should have an internet connection to perform this installation. 1. Install Python 3.6 using the MSI available in python.org download page. 2. Start a command prompt using the cmd.exe program and run the pip command as given below to install selenium. C:Python35Scriptspip.exe install selenium Now you can run your test scripts using Python. For example, if you have created a Selenium based script and saved it inside C:my_selenium_script.py, you can run it like this: C:Python35python.exe C:my_selenium_script.py 1.5 Downloading Selenium server Note: The Selenium server is only required if you want to use the remote WebDriver. See the Using Selenium with remote WebDriver section for more details. If you are a beginner learning Selenium, you can skip this section and proceed with next chapter. Selenium server is a Java program. Java Runtime Environment (JRE) 1.6 or newer version is recommended to run Selenium server. You can download Selenium server 2.x from the download page of selenium website. The file name should be some- thing like this: selenium-server-standalone-2.x.x.jar. You can always download the latest 2.x version of Selenium server. If Java Runtime Environment (JRE) is not installed in your system, you can download the JRE from the Oracle website. If you are using a GNU/Linux system and have root access in your system, you can also use your operating system instructions to install JRE. If java command is available in the PATH (environment variable), you can start the Selenium server using this com- mand: java -jar selenium-server-standalone-2.x.x.jar Replace 2.x.x with the actual version of Selenium server you downloaded from the site. 4 Chapter 1. Installation
  • 11. Selenium Python Bindings, Release 2 If JRE is installed as a non-root user and/or if it is not available in the PATH (environment variable), you can type the relative or absolute path to the java command. Similarly, you can provide a relative or absolute path to Selenium server jar file. Then, the command will look something like this: /path/to/java -jar /path/to/selenium-server-standalone-2.x.x.jar 1.5. Downloading Selenium server 5
  • 12. Selenium Python Bindings, Release 2 6 Chapter 1. Installation
  • 13. CHAPTER 2 Getting Started 2.1 Simple Usage If you have installed Selenium Python bindings, you can start using it from Python like this. from selenium import webdriver from selenium.webdriver.common.keys import Keys driver = webdriver.Firefox() driver.get("http://www.python.org") assert "Python" in driver.title elem = driver.find_element_by_name("q") elem.clear() elem.send_keys("pycon") elem.send_keys(Keys.RETURN) assert "No results found." not in driver.page_source driver.close() The above script can be saved into a file (eg:- python_org_search.py), then it can be run like this: python python_org_search.py The python which you are running should have the selenium module installed. 2.2 Example Explained The selenium.webdriver module provides all the WebDriver implementations. Currently supported WebDriver imple- mentations are Firefox, Chrome, IE and Remote. The Keys class provide keys in the keyboard like RETURN, F1, ALT etc. from selenium import webdriver from selenium.webdriver.common.keys import Keys 7
  • 14. Selenium Python Bindings, Release 2 Next, the instance of Firefox WebDriver is created. driver = webdriver.Firefox() The driver.get method will navigate to a page given by the URL. WebDriver will wait until the page has fully loaded (that is, the “onload” event has fired) before returning control to your test or script. It’s worth noting that if your page uses a lot of AJAX on load then WebDriver may not know when it has completely loaded.: driver.get("http://www.python.org") The next line is an assertion to confirm that title has “Python” word in it: assert "Python" in driver.title WebDriver offers a number of ways to find elements using one of the find_element_by_* methods. For example, the input text element can be located by its name attribute using find_element_by_name method. A detailed explanation of finding elements is available in the Locating Elements chapter: elem = driver.find_element_by_name("q") Next, we are sending keys, this is similar to entering keys using your keyboard. Special keys can be sent using Keys class imported from selenium.webdriver.common.keys. To be safe, we’ll first clear any pre-populated text in the input field (e.g. “Search”) so it doesn’t affect our search results: elem.clear() elem.send_keys("pycon") elem.send_keys(Keys.RETURN) After submission of the page, you should get the result if there is any. To ensure that some results are found, make an assertion: assert "No results found." not in driver.page_source Finally, the browser window is closed. You can also call quit method instead of close. The quit will exit entire browser whereas close‘ will close one tab, but if just one tab was open, by default most browser will exit entirely.: driver.close() 2.3 Using Selenium to write tests Selenium is mostly used for writing test cases. The selenium package itself doesn’t provide a testing tool/framework. You can write test cases using Python’s unittest module. The other options for a tool/framework are py.test and nose. In this chapter, we use unittest as the framework of choice. Here is the modified example which uses unittest module. This is a test for python.org search functionality: import unittest from selenium import webdriver from selenium.webdriver.common.keys import Keys class PythonOrgSearch(unittest.TestCase): def setUp(self): self.driver = webdriver.Firefox() (continues on next page) 8 Chapter 2. Getting Started
  • 15. Selenium Python Bindings, Release 2 (continued from previous page) def test_search_in_python_org(self): driver = self.driver driver.get("http://www.python.org") self.assertIn("Python", driver.title) elem = driver.find_element_by_name("q") elem.send_keys("pycon") elem.send_keys(Keys.RETURN) assert "No results found." not in driver.page_source def tearDown(self): self.driver.close() if __name__ == "__main__": unittest.main() You can run the above test case from a shell like this: python test_python_org_search.py . ---------------------------------------------------------------------- Ran 1 test in 15.566s OK The above result shows that the test has been successfully completed. 2.4 Walk through of the example Initially, all the basic modules required are imported. The unittest module is a built-in Python based on Java’s JUnit. This module provides the framework for organizing the test cases. The selenium.webdriver module provides all the WebDriver implementations. Currently supported WebDriver implementations are Firefox, Chrome, Ie and Remote. The Keys class provide keys in the keyboard like RETURN, F1, ALT etc. import unittest from selenium import webdriver from selenium.webdriver.common.keys import Keys The test case class is inherited from unittest.TestCase. Inheriting from TestCase class is the way to tell unittest module that this is a test case: class PythonOrgSearch(unittest.TestCase): The setUp is part of initialization, this method will get called before every test function which you are going to write in this test case class. Here you are creating the instance of Firefox WebDriver. def setUp(self): self.driver = webdriver.Firefox() This is the test case method. The test case method should always start with characters test. The first line inside this method create a local reference to the driver object created in setUp method. def test_search_in_python_org(self): driver = self.driver 2.4. Walk through of the example 9
  • 16. Selenium Python Bindings, Release 2 The driver.get method will navigate to a page given by the URL. WebDriver will wait until the page has fully loaded (that is, the “onload” event has fired) before returning control to your test or script. It’s worth noting that if your page uses a lot of AJAX on load then WebDriver may not know when it has completely loaded.: driver.get("http://www.python.org") The next line is an assertion to confirm that title has “Python” word in it: self.assertIn("Python", driver.title) WebDriver offers a number of ways to find elements using one of the find_element_by_* methods. For example, the input text element can be located by its name attribute using find_element_by_name method. Detailed explanation of finding elements is available in the Locating Elements chapter: elem = driver.find_element_by_name("q") Next, we are sending keys, this is similar to entering keys using your keyboard. Special keys can be send using Keys class imported from selenium.webdriver.common.keys: elem.send_keys("pycon") elem.send_keys(Keys.RETURN) After submission of the page, you should get the result as per search if there is any. To ensure that some results are found, make an assertion: assert "No results found." not in driver.page_source The tearDown method will get called after every test method. This is a place to do all cleanup actions. In the current method, the browser window is closed. You can also call quit method instead of close. The quit will exit the entire browser, whereas close will close a tab, but if it is the only tab opened, by default most browser will exit entirely.: def tearDown(self): self.driver.close() Final lines are some boiler plate code to run the test suite: if __name__ == "__main__": unittest.main() 2.5 Using Selenium with remote WebDriver To use the remote WebDriver, you should have Selenium server running. To run the server, use this command: java -jar selenium-server-standalone-2.x.x.jar While running the Selenium server, you could see a message looking like this: 15:43:07.541 INFO - RemoteWebDriver instances should connect to: http://127.0.0. ˓→1:4444/wd/hub The above line says that you can use this URL for connecting to remote WebDriver. Here are some examples: from selenium import webdriver from selenium.webdriver.common.desired_capabilities import DesiredCapabilities (continues on next page) 10 Chapter 2. Getting Started
  • 17. Selenium Python Bindings, Release 2 (continued from previous page) driver = webdriver.Remote( command_executor='http://127.0.0.1:4444/wd/hub', desired_capabilities=DesiredCapabilities.CHROME) driver = webdriver.Remote( command_executor='http://127.0.0.1:4444/wd/hub', desired_capabilities=DesiredCapabilities.OPERA) driver = webdriver.Remote( command_executor='http://127.0.0.1:4444/wd/hub', desired_capabilities=DesiredCapabilities.HTMLUNITWITHJS) The desired capabilities is a dictionary, so instead of using the default dictionaries, you can specify the values explic- itly: driver = webdriver.Remote( command_executor='http://127.0.0.1:4444/wd/hub', desired_capabilities={'browserName': 'htmlunit', 'version': '2', 'javascriptEnabled': True}) 2.5. Using Selenium with remote WebDriver 11
  • 18. Selenium Python Bindings, Release 2 12 Chapter 2. Getting Started
  • 19. CHAPTER 3 Navigating The first thing you’ll want to do with WebDriver is navigate to a link. The normal way to do this is by calling get method: driver.get("http://www.google.com") WebDriver will wait until the page has fully loaded (that is, the onload event has fired) before returning control to your test or script. It’s worth noting that if your page uses a lot of AJAX on load then WebDriver may not know when it has completely loaded. If you need to ensure such pages are fully loaded then you can use waits. 3.1 Interacting with the page Just being able to go to places isn’t terribly useful. What we’d really like to do is to interact with the pages, or, more specifically, the HTML elements within a page. First of all, we need to find one. WebDriver offers a number of ways to find elements. For example, given an element defined as: <input type="text" name="passwd" id="passwd-id" /> you could find it using any of: element = driver.find_element_by_id("passwd-id") element = driver.find_element_by_name("passwd") element = driver.find_element_by_xpath("//input[@id='passwd-id']") You can also look for a link by its text, but be careful! The text must be an exact match! You should also be careful when using XPATH in WebDriver. If there’s more than one element that matches the query, then only the first will be returned. If nothing can be found, a NoSuchElementException will be raised. WebDriver has an “Object-based” API; we represent all types of elements using the same interface. This means that although you may see a lot of possible methods you could invoke when you hit your IDE’s auto-complete key combination, not all of them will make sense or be valid. Don’t worry! WebDriver will attempt to do the Right Thing, and if you call a method that makes no sense (“setSelected()” on a “meta” tag, for example) an exception will be raised. 13
  • 20. Selenium Python Bindings, Release 2 So, you’ve got an element. What can you do with it? First of all, you may want to enter some text into a text field: element.send_keys("some text") You can simulate pressing the arrow keys by using the “Keys” class: element.send_keys(" and some", Keys.ARROW_DOWN) It is possible to call send_keys on any element, which makes it possible to test keyboard shortcuts such as those used on GMail. A side-effect of this is that typing something into a text field won’t automatically clear it. Instead, what you type will be appended to what’s already there. You can easily clear the contents of a text field or textarea with the clear method: element.clear() 3.2 Filling in forms We’ve already seen how to enter text into a textarea or text field, but what about the other elements? You can “toggle” the state of the drop down, and you can use “setSelected” to set something like an OPTION tag selected. Dealing with SELECT tags isn’t too bad: element = driver.find_element_by_xpath("//select[@name='name']") all_options = element.find_elements_by_tag_name("option") for option in all_options: print("Value is: %s" % option.get_attribute("value")) option.click() This will find the first “SELECT” element on the page, and cycle through each of its OPTIONs in turn, printing out their values, and selecting each in turn. As you can see, this isn’t the most efficient way of dealing with SELECT elements. WebDriver’s support classes include one called a “Select”, which provides useful methods for interacting with these: from selenium.webdriver.support.ui import Select select = Select(driver.find_element_by_name('name')) select.select_by_index(index) select.select_by_visible_text("text") select.select_by_value(value) WebDriver also provides features for deselecting all the selected options: select = Select(driver.find_element_by_id('id')) select.deselect_all() This will deselect all OPTIONs from that particular SELECT on the page. Suppose in a test, we need the list of all default selected options, Select class provides a property method that returns a list: select = Select(driver.find_element_by_xpath("//select[@name='name']")) all_selected_options = select.all_selected_options To get all available options: options = select.options 14 Chapter 3. Navigating
  • 21. Selenium Python Bindings, Release 2 Once you’ve finished filling out the form, you probably want to submit it. One way to do this would be to find the “submit” button and click it: # Assume the button has the ID "submit" :) driver.find_element_by_id("submit").click() Alternatively, WebDriver has the convenience method “submit” on every element. If you call this on an element within a form, WebDriver will walk up the DOM until it finds the enclosing form and then calls submit on that. If the element isn’t in a form, then the NoSuchElementException will be raised: element.submit() 3.3 Drag and drop You can use drag and drop, either moving an element by a certain amount, or on to another element: element = driver.find_element_by_name("source") target = driver.find_element_by_name("target") from selenium.webdriver import ActionChains action_chains = ActionChains(driver) action_chains.drag_and_drop(element, target).perform() 3.4 Moving between windows and frames It’s rare for a modern web application not to have any frames or to be constrained to a single window. WebDriver supports moving between named windows using the “switch_to_window” method: driver.switch_to_window("windowName") All calls to driver will now be interpreted as being directed to the particular window. But how do you know the window’s name? Take a look at the javascript or link that opened it: <a href="somewhere.html" target="windowName">Click here to open a new window</a> Alternatively, you can pass a “window handle” to the “switch_to_window()” method. Knowing this, it’s possible to iterate over every open window like so: for handle in driver.window_handles: driver.switch_to_window(handle) You can also swing from frame to frame (or into iframes): driver.switch_to_frame("frameName") It’s possible to access subframes by separating the path with a dot, and you can specify the frame by its index too. That is: driver.switch_to_frame("frameName.0.child") would go to the frame named “child” of the first subframe of the frame called “frameName”. All frames are evaluated as if from *top*. 3.3. Drag and drop 15
  • 22. Selenium Python Bindings, Release 2 Once we are done with working on frames, we will have to come back to the parent frame which can be done using: driver.switch_to_default_content() 3.5 Popup dialogs Selenium WebDriver has built-in support for handling popup dialog boxes. After you’ve triggered action that would open a popup, you can access the alert with the following: alert = driver.switch_to_alert() This will return the currently open alert object. With this object, you can now accept, dismiss, read its contents or even type into a prompt. This interface works equally well on alerts, confirms, prompts. Refer to the API documentation for more information. 3.6 Navigation: history and location Earlier, we covered navigating to a page using the “get” command ( driver.get("http://www.example. com")) As you’ve seen, WebDriver has a number of smaller, task-focused interfaces, and navigation is a useful task. To navigate to a page, you can use get method: driver.get("http://www.example.com") To move backward and forward in your browser’s history: driver.forward() driver.back() Please be aware that this functionality depends entirely on the underlying driver. It’s just possible that something unexpected may happen when you call these methods if you’re used to the behavior of one browser over another. 3.7 Cookies Before we leave these next steps, you may be interested in understanding how to use cookies. First of all, you need to be on the domain that the cookie will be valid for: # Go to the correct domain driver.get("http://www.example.com") # Now set the cookie. This one's valid for the entire domain cookie = {‘name’ : ‘foo’, ‘value’ : ‘bar’} driver.add_cookie(cookie) # And now output all the available cookies for the current URL driver.get_cookies() 16 Chapter 3. Navigating
  • 23. CHAPTER 4 Locating Elements There are various strategies to locate elements in a page. You can use the most appropriate one for your case. Selenium provides the following methods to locate elements in a page: • find_element_by_id • find_element_by_name • find_element_by_xpath • find_element_by_link_text • find_element_by_partial_link_text • find_element_by_tag_name • find_element_by_class_name • find_element_by_css_selector To find multiple elements (these methods will return a list): • find_elements_by_name • find_elements_by_xpath • find_elements_by_link_text • find_elements_by_partial_link_text • find_elements_by_tag_name • find_elements_by_class_name • find_elements_by_css_selector Apart from the public methods given above, there are two private methods which might be useful with locators in page objects. These are the two private methods: find_element and find_elements. Example usage: 17
  • 24. Selenium Python Bindings, Release 2 from selenium.webdriver.common.by import By driver.find_element(By.XPATH, '//button[text()="Some text"]') driver.find_elements(By.XPATH, '//button') These are the attributes available for By class: ID = "id" XPATH = "xpath" LINK_TEXT = "link text" PARTIAL_LINK_TEXT = "partial link text" NAME = "name" TAG_NAME = "tag name" CLASS_NAME = "class name" CSS_SELECTOR = "css selector" 4.1 Locating by Id Use this when you know id attribute of an element. With this strategy, the first element with the id attribute value matching the location will be returned. If no element has a matching id attribute, a NoSuchElementException will be raised. For instance, consider this page source: <html> <body> <form id="loginForm"> <input name="username" type="text" /> <input name="password" type="password" /> <input name="continue" type="submit" value="Login" /> </form> </body> <html> The form element can be located like this: login_form = driver.find_element_by_id('loginForm') 4.2 Locating by Name Use this when you know name attribute of an element. With this strategy, the first element with the name attribute value matching the location will be returned. If no element has a matching name attribute, a NoSuchElementException will be raised. For instance, consider this page source: <html> <body> <form id="loginForm"> <input name="username" type="text" /> <input name="password" type="password" /> <input name="continue" type="submit" value="Login" /> (continues on next page) 18 Chapter 4. Locating Elements
  • 25. Selenium Python Bindings, Release 2 (continued from previous page) <input name="continue" type="button" value="Clear" /> </form> </body> <html> The username & password elements can be located like this: username = driver.find_element_by_name('username') password = driver.find_element_by_name('password') This will give the “Login” button as it occurs before the “Clear” button: continue = driver.find_element_by_name('continue') 4.3 Locating by XPath XPath is the language used for locating nodes in an XML document. As HTML can be an implementation of XML (XHTML), Selenium users can leverage this powerful language to target elements in their web applications. XPath extends beyond (as well as supporting) the simple methods of locating by id or name attributes, and opens up all sorts of new possibilities such as locating the third checkbox on the page. One of the main reasons for using XPath is when you don’t have a suitable id or name attribute for the element you wish to locate. You can use XPath to either locate the element in absolute terms (not advised), or relative to an element that does have an id or name attribute. XPath locators can also be used to specify elements via attributes other than id and name. Absolute XPaths contain the location of all elements from the root (html) and as a result are likely to fail with only the slightest adjustment to the application. By finding a nearby element with an id or name attribute (ideally a parent element) you can locate your target element based on the relationship. This is much less likely to change and can make your tests more robust. For instance, consider this page source: <html> <body> <form id="loginForm"> <input name="username" type="text" /> <input name="password" type="password" /> <input name="continue" type="submit" value="Login" /> <input name="continue" type="button" value="Clear" /> </form> </body> <html> The form elements can be located like this: login_form = driver.find_element_by_xpath("/html/body/form[1]") login_form = driver.find_element_by_xpath("//form[1]") login_form = driver.find_element_by_xpath("//form[@id='loginForm']") 1. Absolute path (would break if the HTML was changed only slightly) 2. First form element in the HTML 3. The form element with attribute named id and the value loginForm 4.3. Locating by XPath 19
  • 26. Selenium Python Bindings, Release 2 The username element can be located like this: username = driver.find_element_by_xpath("//form[input/@name='username']") username = driver.find_element_by_xpath("//form[@id='loginForm']/input[1]") username = driver.find_element_by_xpath("//input[@name='username']") 1. First form element with an input child element with attribute named name and the value username 2. First input child element of the form element with attribute named id and the value loginForm 3. First input element with attribute named ‘name’ and the value username The “Clear” button element can be located like this: clear_button = driver.find_element_by_xpath("//input[@name='continue'][@type='button'] ˓→") clear_button = driver.find_element_by_xpath("//form[@id='loginForm']/input[4]") 1. Input with attribute named name and the value continue and attribute named type and the value button 2. Fourth input child element of the form element with attribute named id and value loginForm These examples cover some basics, but in order to learn more, the following references are recommended: • W3Schools XPath Tutorial • W3C XPath Recommendation • XPath Tutorial - with interactive examples. There are also a couple of very useful Add-ons that can assist in discovering the XPath of an element: • XPath Checker - suggests XPath and can be used to test XPath results. • Firebug - XPath suggestions are just one of the many powerful features of this very useful add-on. • XPath Helper - for Google Chrome 4.4 Locating Hyperlinks by Link Text Use this when you know link text used within an anchor tag. With this strategy, the first element with the link text value matching the location will be returned. If no element has a matching link text attribute, a NoSuchElementException will be raised. For instance, consider this page source: <html> <body> <p>Are you sure you want to do this?</p> <a href="continue.html">Continue</a> <a href="cancel.html">Cancel</a> </body> <html> The continue.html link can be located like this: continue_link = driver.find_element_by_link_text('Continue') continue_link = driver.find_element_by_partial_link_text('Conti') 20 Chapter 4. Locating Elements
  • 27. Selenium Python Bindings, Release 2 4.5 Locating Elements by Tag Name Use this when you want to locate an element by tag name. With this strategy, the first element with the given tag name will be returned. If no element has a matching tag name, a NoSuchElementException will be raised. For instance, consider this page source: <html> <body> <h1>Welcome</h1> <p>Site content goes here.</p> </body> <html> The heading (h1) element can be located like this: heading1 = driver.find_element_by_tag_name('h1') 4.6 Locating Elements by Class Name Use this when you want to locate an element by class attribute name. With this strategy, the first element with the matching class attribute name will be returned. If no element has a matching class attribute name, a NoSuchElementException will be raised. For instance, consider this page source: <html> <body> <p class="content">Site content goes here.</p> </body> <html> The “p” element can be located like this: content = driver.find_element_by_class_name('content') 4.7 Locating Elements by CSS Selectors Use this when you want to locate an element by CSS selector syntax. With this strategy, the first element with the matching CSS selector will be returned. If no element has a matching CSS selector, a NoSuchElementException will be raised. For instance, consider this page source: <html> <body> <p class="content">Site content goes here.</p> </body> <html> The “p” element can be located like this: 4.5. Locating Elements by Tag Name 21
  • 28. Selenium Python Bindings, Release 2 content = driver.find_element_by_css_selector('p.content') Sauce Labs has good documentation on CSS selectors. 22 Chapter 4. Locating Elements
  • 29. CHAPTER 5 Waits These days most of the web apps are using AJAX techniques. When a page is loaded by the browser, the elements within that page may load at different time intervals. This makes locating elements difficult: if an element is not yet present in the DOM, a locate function will raise an ElementNotVisibleException exception. Using waits, we can solve this issue. Waiting provides some slack between actions performed - mostly locating an element or any other operation with the element. Selenium Webdriver provides two types of waits - implicit & explicit. An explicit wait makes WebDriver wait for a certain condition to occur before proceeding further with execution. An implicit wait makes WebDriver poll the DOM for a certain amount of time when trying to locate an element. 5.1 Explicit Waits An explicit wait is a code you define to wait for a certain condition to occur before proceeding further in the code. The extreme case of this is time.sleep(), which sets the condition to an exact time period to wait. There are some convenience methods provided that help you write code that will wait only as long as required. WebDriverWait in combination with ExpectedCondition is one way this can be accomplished. from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC driver = webdriver.Firefox() driver.get("http://somedomain/url_that_delays_loading") try: element = WebDriverWait(driver, 10).until( EC.presence_of_element_located((By.ID, "myDynamicElement")) ) finally: driver.quit() 23
  • 30. Selenium Python Bindings, Release 2 This waits up to 10 seconds before throwing a TimeoutException unless it finds the element to return within 10 sec- onds. WebDriverWait by default calls the ExpectedCondition every 500 milliseconds until it returns successfully. A successful return is for ExpectedCondition type is Boolean return true or not null return value for all other Expected- Condition types. Expected Conditions There are some common conditions that are frequently of use when automating web browsers. Listed below are the names of each. Selenium Python binding provides some convenience methods so you don’t have to code an expected_condition class yourself or create your own utility package for them. • title_is • title_contains • presence_of_element_located • visibility_of_element_located • visibility_of • presence_of_all_elements_located • text_to_be_present_in_element • text_to_be_present_in_element_value • frame_to_be_available_and_switch_to_it • invisibility_of_element_located • element_to_be_clickable • staleness_of • element_to_be_selected • element_located_to_be_selected • element_selection_state_to_be • element_located_selection_state_to_be • alert_is_present from selenium.webdriver.support import expected_conditions as EC wait = WebDriverWait(driver, 10) element = wait.until(EC.element_to_be_clickable((By.ID, 'someid'))) The expected_conditions module contains a set of predefined conditions to use with WebDriverWait. Custom Wait Conditions You can also create custom wait conditions when none of the previous convenience methods fit your requirements. A custom wait condition can be created using a class with __call__ method which returns False when the condition doesn’t match. class element_has_css_class(object): """An expectation for checking that an element has a particular css class. locator - used to find the element returns the WebElement once it has the particular css class """ def __init__(self, locator, css_class): (continues on next page) 24 Chapter 5. Waits
  • 31. Selenium Python Bindings, Release 2 (continued from previous page) self.locator = locator self.css_class = css_class def __call__(self, driver): element = driver.find_element(*self.locator) # Finding the referenced element if self.css_class in element.get_attribute("class"): return element else: return False # Wait until an element with id='myNewInput' has class 'myCSSClass' wait = WebDriverWait(driver, 10) element = wait.until(element_has_css_class((By.ID, 'myNewInput'), "myCSSClass")) 5.2 Implicit Waits An implicit wait tells WebDriver to poll the DOM for a certain amount of time when trying to find any element (or elements) not immediately available. The default setting is 0. Once set, the implicit wait is set for the life of the WebDriver object. from selenium import webdriver driver = webdriver.Firefox() driver.implicitly_wait(10) # seconds driver.get("http://somedomain/url_that_delays_loading") myDynamicElement = driver.find_element_by_id("myDynamicElement") 5.2. Implicit Waits 25
  • 32. Selenium Python Bindings, Release 2 26 Chapter 5. Waits
  • 33. CHAPTER 6 Page Objects This chapter is a tutorial introduction to page objects design pattern. A page object represents an area in the web application user interface that your test is interacting. Benefits of using page object pattern: • Creating reusable code that can be shared across multiple test cases • Reducing the amount of duplicated code • If the user interface changes, the fix needs changes in only one place 6.1 Test case Here is a test case which searches for a word in python.org website and ensure some results are found. import unittest from selenium import webdriver import page class PythonOrgSearch(unittest.TestCase): """A sample test class to show how page object works""" def setUp(self): self.driver = webdriver.Firefox() self.driver.get("http://www.python.org") def test_search_in_python_org(self): """ Tests python.org search feature. Searches for the word "pycon" then verified ˓→that some results show up. Note that it does not look for any particular text in search results page. ˓→This test verifies that the results were not empty. (continues on next page) 27
  • 34. Selenium Python Bindings, Release 2 (continued from previous page) """ #Load the main page. In this case the home page of Python.org. main_page = page.MainPage(self.driver) #Checks if the word "Python" is in title assert main_page.is_title_matches(), "python.org title doesn't match." #Sets the text of search textbox to "pycon" main_page.search_text_element = "pycon" main_page.click_go_button() search_results_page = page.SearchResultsPage(self.driver) #Verifies that the results page is not empty assert search_results_page.is_results_found(), "No results found." def tearDown(self): self.driver.close() if __name__ == "__main__": unittest.main() 6.2 Page object classes The page object pattern intends creating an object for each web page. By following this technique a layer of separation between the test code and technical implementation is created. The page.py will look like this: from element import BasePageElement from locators import MainPageLocators class SearchTextElement(BasePageElement): """This class gets the search text from the specified locator""" #The locator for search box where search string is entered locator = 'q' class BasePage(object): """Base class to initialize the base page that will be called from all pages""" def __init__(self, driver): self.driver = driver class MainPage(BasePage): """Home page action methods come here. I.e. Python.org""" #Declares a variable that will contain the retrieved text search_text_element = SearchTextElement() def is_title_matches(self): """Verifies that the hardcoded text "Python" appears in page title""" return "Python" in self.driver.title def click_go_button(self): (continues on next page) 28 Chapter 6. Page Objects
  • 35. Selenium Python Bindings, Release 2 (continued from previous page) """Triggers the search""" element = self.driver.find_element(*MainPageLocators.GO_BUTTON) element.click() class SearchResultsPage(BasePage): """Search results page action methods come here""" def is_results_found(self): # Probably should search for this text in the specific page # element, but as for now it works fine return "No results found." not in self.driver.page_source 6.3 Page elements The element.py will look like this: from selenium.webdriver.support.ui import WebDriverWait class BasePageElement(object): """Base page class that is initialized on every page object class.""" def __set__(self, obj, value): """Sets the text to the value supplied""" driver = obj.driver WebDriverWait(driver, 100).until( lambda driver: driver.find_element_by_name(self.locator)) driver.find_element_by_name(self.locator).clear() driver.find_element_by_name(self.locator).send_keys(value) def __get__(self, obj, owner): """Gets the text of the specified object""" driver = obj.driver WebDriverWait(driver, 100).until( lambda driver: driver.find_element_by_name(self.locator)) element = driver.find_element_by_name(self.locator) return element.get_attribute("value") 6.4 Locators One of the practices is to separate the locator strings from the place where they are being used. In this example, locators of the same page belong to same class. The locators.py will look like this: from selenium.webdriver.common.by import By class MainPageLocators(object): """A class for main page locators. All main page locators should come here""" GO_BUTTON = (By.ID, 'submit') (continues on next page) 6.3. Page elements 29
  • 36. Selenium Python Bindings, Release 2 (continued from previous page) class SearchResultsPageLocators(object): """A class for search results locators. All search results locators should come ˓→here""" pass 30 Chapter 6. Page Objects
  • 37. CHAPTER 7 WebDriver API Note: This is not an official documentation. Official API documentation is available here. This chapter covers all the interfaces of Selenium WebDriver. Recommended Import Style The API definitions in this chapter show the absolute location of classes. However, the recommended import style is as given below: from selenium import webdriver Then, you can access the classes like this: webdriver.Firefox webdriver.FirefoxProfile webdriver.Chrome webdriver.ChromeOptions webdriver.Ie webdriver.Opera webdriver.PhantomJS webdriver.Remote webdriver.DesiredCapabilities webdriver.ActionChains webdriver.TouchActions webdriver.Proxy The special keys class (Keys) can be imported like this: from selenium.webdriver.common.keys import Keys The exception classes can be imported like this (Replace the TheNameOfTheExceptionClass with the actual class name given below): 31
  • 38. Selenium Python Bindings, Release 2 from selenium.common.exceptions import [TheNameOfTheExceptionClass] Conventions used in the API Some attributes are callable (or methods) and others are non-callable (properties). All the callable attributes are ending with round brackets. Here is an example for property: • current_url URL of the currently loaded page. Usage: driver.current_url Here is an example of a method: • close() Closes the current window. Usage: driver.close() 7.1 Exceptions Exceptions that may happen in all the webdriver code. exception selenium.common.exceptions.ElementClickInterceptedException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException The Element Click command could not be completed because the element receiving the events is obscuring the element that was requested clicked. exception selenium.common.exceptions.ElementNotInteractableException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.InvalidElementStateException Thrown when an element is present in the DOM but interactions with that element will hit another element do to paint order exception selenium.common.exceptions.ElementNotSelectableException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.InvalidElementStateException Thrown when trying to select an unselectable element. For example, selecting a ‘script’ element. 32 Chapter 7. WebDriver API
  • 39. Selenium Python Bindings, Release 2 exception selenium.common.exceptions.ElementNotVisibleException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.InvalidElementStateException Thrown when an element is present on the DOM, but it is not visible, and so is not able to be interacted with. Most commonly encountered when trying to click or read text of an element that is hidden from view. exception selenium.common.exceptions.ErrorInResponseException(response, msg) Bases: selenium.common.exceptions.WebDriverException Thrown when an error has occurred on the server side. This may happen when communicating with the firefox extension or the remote driver server. __init__(response, msg) x.__init__(...) initializes x; see help(type(x)) for signature exception selenium.common.exceptions.ImeActivationFailedException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when activating an IME engine has failed. exception selenium.common.exceptions.ImeNotAvailableException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when IME support is not available. This exception is thrown for every IME-related method call if IME support is not available on the machine. exception selenium.common.exceptions.InsecureCertificateException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Navigation caused the user agent to hit a certificate warning, which is usually the result of an expired or invalid TLS certificate. exception selenium.common.exceptions.InvalidArgumentException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException The arguments passed to a command are either invalid or malformed. exception selenium.common.exceptions.InvalidCookieDomainException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when attempting to add a cookie under a different domain than the current URL. 7.1. Exceptions 33
  • 40. Selenium Python Bindings, Release 2 exception selenium.common.exceptions.InvalidCoordinatesException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException The coordinates provided to an interactions operation are invalid. exception selenium.common.exceptions.InvalidElementStateException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when a command could not be completed because the element is in an invalid state. This can be caused by attempting to clear an element that isn’t both editable and resettable. exception selenium.common.exceptions.InvalidSelectorException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.NoSuchElementException Thrown when the selector which is used to find an element does not return a WebElement. Currently this only happens when the selector is an xpath expression and it is either syntactically invalid (i.e. it is not a xpath expression) or the expression does not select WebElements (e.g. “count(//input)”). exception selenium.common.exceptions.InvalidSessionIdException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Occurs if the given session id is not in the list of active sessions, meaning the session either does not exist or that it’s not active. exception selenium.common.exceptions.InvalidSwitchToTargetException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when frame or window target to be switched doesn’t exist. exception selenium.common.exceptions.JavascriptException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException An error occurred while executing JavaScript supplied by the user. exception selenium.common.exceptions.MoveTargetOutOfBoundsException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when the target provided to the ActionsChains move() method is invalid, i.e. out of document. exception selenium.common.exceptions.NoAlertPresentException(msg=None, screen=None, stacktrace=None) Bases: selenium.common.exceptions.WebDriverException 34 Chapter 7. WebDriver API
  • 41. Selenium Python Bindings, Release 2 Thrown when switching to no presented alert. This can be caused by calling an operation on the Alert() class when an alert is not yet on the screen. exception selenium.common.exceptions.NoSuchAttributeException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when the attribute of element could not be found. You may want to check if the attribute exists in the particular browser you are testing against. Some browsers may have different property names for the same property. (IE8’s .innerText vs. Firefox .textContent) exception selenium.common.exceptions.NoSuchCookieException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException No cookie matching the given path name was found amongst the associated cookies of the current browsing context’s active document. exception selenium.common.exceptions.NoSuchElementException(msg=None, screen=None, stacktrace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when element could not be found. If you encounter this exception, you may want to check the following: • Check your selector used in your find_by... • Element may not yet be on the screen at the time of the find operation, (webpage is still loading) see selenium.webdriver.support.wait.WebDriverWait() for how to write a wait wrapper to wait for an element to appear. exception selenium.common.exceptions.NoSuchFrameException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.InvalidSwitchToTargetException Thrown when frame target to be switched doesn’t exist. exception selenium.common.exceptions.NoSuchWindowException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.InvalidSwitchToTargetException Thrown when window target to be switched doesn’t exist. To find the current set of active window handles, you can get a list of the active window handles in the following way: print driver.window_handles exception selenium.common.exceptions.RemoteDriverServerException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException 7.1. Exceptions 35
  • 42. Selenium Python Bindings, Release 2 exception selenium.common.exceptions.ScreenshotException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException A screen capture was made impossible. exception selenium.common.exceptions.SessionNotCreatedException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException A new session could not be created. exception selenium.common.exceptions.StaleElementReferenceException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when a reference to an element is now “stale”. Stale means the element no longer appears on the DOM of the page. Possible causes of StaleElementReferenceException include, but not limited to: • You are no longer on the same page, or the page may have refreshed since the element was located. • The element may have been removed and re-added to the screen, since it was located. Such as an element being relocated. This can happen typically with a javascript framework when values are updated and the node is rebuilt. • Element may have been inside an iframe or another context which was refreshed. exception selenium.common.exceptions.TimeoutException(msg=None, screen=None, stacktrace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when a command does not complete in enough time. exception selenium.common.exceptions.UnableToSetCookieException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when a driver fails to set a cookie. exception selenium.common.exceptions.UnexpectedAlertPresentException(msg=None, screen=None, stack- trace=None, alert_text=None) Bases: selenium.common.exceptions.WebDriverException Thrown when an unexpected alert is appeared. Usually raised when when an expected modal is blocking webdriver form executing any more commands. __init__(msg=None, screen=None, stacktrace=None, alert_text=None) x.__init__(...) initializes x; see help(type(x)) for signature 36 Chapter 7. WebDriver API
  • 43. Selenium Python Bindings, Release 2 exception selenium.common.exceptions.UnexpectedTagNameException(msg=None, screen=None, stack- trace=None) Bases: selenium.common.exceptions.WebDriverException Thrown when a support class did not get an expected web element. exception selenium.common.exceptions.UnknownMethodException(msg=None, screen=None, stacktrace=None) Bases: selenium.common.exceptions.WebDriverException The requested command matched a known URL but did not match an method for that URL. exception selenium.common.exceptions.WebDriverException(msg=None, screen=None, stacktrace=None) Bases: exceptions.Exception Base webdriver exception. __init__(msg=None, screen=None, stacktrace=None) x.__init__(...) initializes x; see help(type(x)) for signature 7.2 Action Chains The ActionChains implementation, class selenium.webdriver.common.action_chains.ActionChains(driver) Bases: object ActionChains are a way to automate low level interactions such as mouse movements, mouse button actions, key press, and context menu interactions. This is useful for doing more complex actions like hover over and drag and drop. Generate user actions. When you call methods for actions on the ActionChains object, the actions are stored in a queue in the ActionChains object. When you call perform(), the events are fired in the order they are queued up. ActionChains can be used in a chain pattern: menu = driver.find_element_by_css_selector(".nav") hidden_submenu = driver.find_element_by_css_selector(".nav #submenu1") ActionChains(driver).move_to_element(menu).click(hidden_submenu).perform() Or actions can be queued up one by one, then performed.: menu = driver.find_element_by_css_selector(".nav") hidden_submenu = driver.find_element_by_css_selector(".nav #submenu1") actions = ActionChains(driver) actions.move_to_element(menu) actions.click(hidden_submenu) actions.perform() Either way, the actions are performed in the order they are called, one after another. __init__(driver) Creates a new ActionChains. 7.2. Action Chains 37
  • 44. Selenium Python Bindings, Release 2 Args • driver: The WebDriver instance which performs user actions. click(on_element=None) Clicks an element. Args • on_element: The element to click. If None, clicks on current mouse position. click_and_hold(on_element=None) Holds down the left mouse button on an element. Args • on_element: The element to mouse down. If None, clicks on current mouse position. context_click(on_element=None) Performs a context-click (right click) on an element. Args • on_element: The element to context-click. If None, clicks on current mouse position. double_click(on_element=None) Double-clicks an element. Args • on_element: The element to double-click. If None, clicks on current mouse position. drag_and_drop(source, target) Holds down the left mouse button on the source element, then moves to the target element and releases the mouse button. Args • source: The element to mouse down. • target: The element to mouse up. drag_and_drop_by_offset(source, xoffset, yoffset) Holds down the left mouse button on the source element, then moves to the target offset and releases the mouse button. Args • source: The element to mouse down. • xoffset: X offset to move to. • yoffset: Y offset to move to. key_down(value, element=None) Sends a key press only, without releasing it. Should only be used with modifier keys (Control, Alt and Shift). Args • value: The modifier key to send. Values are defined in Keys class. • element: The element to send keys. If None, sends a key to current focused element. 38 Chapter 7. WebDriver API
  • 45. Selenium Python Bindings, Release 2 Example, pressing ctrl+c: ActionChains(driver).key_down(Keys.CONTROL).send_keys('c').key_up(Keys. ˓→CONTROL).perform() key_up(value, element=None) Releases a modifier key. Args • value: The modifier key to send. Values are defined in Keys class. • element: The element to send keys. If None, sends a key to current focused element. Example, pressing ctrl+c: ActionChains(driver).key_down(Keys.CONTROL).send_keys('c').key_up(Keys. ˓→CONTROL).perform() move_by_offset(xoffset, yoffset) Moving the mouse to an offset from current mouse position. Args • xoffset: X offset to move to, as a positive or negative integer. • yoffset: Y offset to move to, as a positive or negative integer. move_to_element(to_element) Moving the mouse to the middle of an element. Args • to_element: The WebElement to move to. move_to_element_with_offset(to_element, xoffset, yoffset) Move the mouse by an offset of the specified element. Offsets are relative to the top-left corner of the element. Args • to_element: The WebElement to move to. • xoffset: X offset to move to. • yoffset: Y offset to move to. pause(seconds) Pause all inputs for the specified duration in seconds perform() Performs all stored actions. release(on_element=None) Releasing a held mouse button on an element. Args • on_element: The element to mouse up. If None, releases on current mouse position. reset_actions() Clears actions that are already stored locally and on the remote end 7.2. Action Chains 39
  • 46. Selenium Python Bindings, Release 2 send_keys(*keys_to_send) Sends keys to current focused element. Args • keys_to_send: The keys to send. Modifier keys constants can be found in the ‘Keys’ class. send_keys_to_element(element, *keys_to_send) Sends keys to an element. Args • element: The element to send keys. • keys_to_send: The keys to send. Modifier keys constants can be found in the ‘Keys’ class. 7.3 Alerts The Alert implementation. class selenium.webdriver.common.alert.Alert(driver) Bases: object Allows to work with alerts. Use this class to interact with alert prompts. It contains methods for dismissing, accepting, inputting, and getting text from alert prompts. Accepting / Dismissing alert prompts: Alert(driver).accept() Alert(driver).dismiss() Inputting a value into an alert prompt: name_prompt = Alert(driver) name_prompt.send_keys(“Willian Shakesphere”) name_prompt.accept() Reading a the text of a prompt for verification: alert_text = Alert(driver).text self.assertEqual(“Do you wish to quit?”, alert_text) __init__(driver) Creates a new Alert. Args • driver: The WebDriver instance which performs user actions. accept() Accepts the alert available. Usage:: Alert(driver).accept() # Confirm a alert dialog. dismiss() Dismisses the alert available. send_keys(keysToSend) Send Keys to the Alert. Args • keysToSend: The text to be sent to Alert. 40 Chapter 7. WebDriver API
  • 47. Selenium Python Bindings, Release 2 text Gets the text of the Alert. 7.4 Special Keys The Keys implementation. class selenium.webdriver.common.keys.Keys Bases: object Set of special keys codes. ADD = u'ue025' ALT = u'ue00a' ARROW_DOWN = u'ue015' ARROW_LEFT = u'ue012' ARROW_RIGHT = u'ue014' ARROW_UP = u'ue013' BACKSPACE = u'ue003' BACK_SPACE = u'ue003' CANCEL = u'ue001' CLEAR = u'ue005' COMMAND = u'ue03d' CONTROL = u'ue009' DECIMAL = u'ue028' DELETE = u'ue017' DIVIDE = u'ue029' DOWN = u'ue015' END = u'ue010' ENTER = u'ue007' EQUALS = u'ue019' ESCAPE = u'ue00c' F1 = u'ue031' F10 = u'ue03a' F11 = u'ue03b' F12 = u'ue03c' F2 = u'ue032' F3 = u'ue033' F4 = u'ue034' F5 = u'ue035' 7.4. Special Keys 41
  • 48. Selenium Python Bindings, Release 2 F6 = u'ue036' F7 = u'ue037' F8 = u'ue038' F9 = u'ue039' HELP = u'ue002' HOME = u'ue011' INSERT = u'ue016' LEFT = u'ue012' LEFT_ALT = u'ue00a' LEFT_CONTROL = u'ue009' LEFT_SHIFT = u'ue008' META = u'ue03d' MULTIPLY = u'ue024' NULL = u'ue000' NUMPAD0 = u'ue01a' NUMPAD1 = u'ue01b' NUMPAD2 = u'ue01c' NUMPAD3 = u'ue01d' NUMPAD4 = u'ue01e' NUMPAD5 = u'ue01f' NUMPAD6 = u'ue020' NUMPAD7 = u'ue021' NUMPAD8 = u'ue022' NUMPAD9 = u'ue023' PAGE_DOWN = u'ue00f' PAGE_UP = u'ue00e' PAUSE = u'ue00b' RETURN = u'ue006' RIGHT = u'ue014' SEMICOLON = u'ue018' SEPARATOR = u'ue026' SHIFT = u'ue008' SPACE = u'ue00d' SUBTRACT = u'ue027' TAB = u'ue004' UP = u'ue013' 42 Chapter 7. WebDriver API
  • 49. Selenium Python Bindings, Release 2 7.5 Locate elements By These are the attributes which can be used to locate elements. See the Locating Elements chapter for example usages. The By implementation. class selenium.webdriver.common.by.By Bases: object Set of supported locator strategies. CLASS_NAME = 'class name' CSS_SELECTOR = 'css selector' ID = 'id' LINK_TEXT = 'link text' NAME = 'name' PARTIAL_LINK_TEXT = 'partial link text' TAG_NAME = 'tag name' XPATH = 'xpath' 7.6 Desired Capabilities See the Using Selenium with remote WebDriver section for example usages of desired capabilities. The Desired Capabilities implementation. class selenium.webdriver.common.desired_capabilities.DesiredCapabilities Bases: object Set of default supported desired capabilities. Use this as a starting point for creating a desired capabilities object for requesting remote webdrivers for con- necting to selenium server or selenium grid. Usage Example: from selenium import webdriver selenium_grid_url = "http://198.0.0.1:4444/wd/hub" # Create a desired capabilities object as a starting point. capabilities = DesiredCapabilities.FIREFOX.copy() capabilities['platform'] = "WINDOWS" capabilities['version'] = "10" # Instantiate an instance of Remote WebDriver with the desired capabilities. driver = webdriver.Remote(desired_capabilities=capabilities, command_executor=selenium_grid_url) Note: Always use ‘.copy()’ on the DesiredCapabilities object to avoid the side effects of altering the Global class instance. ANDROID = {'browserName': 'android', 'platform': 'ANDROID', 'version': ''} CHROME = {'browserName': 'chrome', 'platform': 'ANY', 'version': ''} 7.5. Locate elements By 43
  • 50. Selenium Python Bindings, Release 2 EDGE = {'browserName': 'MicrosoftEdge', 'platform': 'WINDOWS', 'version': ''} FIREFOX = {'acceptInsecureCerts': True, 'browserName': 'firefox', 'marionette': True HTMLUNIT = {'browserName': 'htmlunit', 'platform': 'ANY', 'version': ''} HTMLUNITWITHJS = {'browserName': 'htmlunit', 'javascriptEnabled': True, 'platform': INTERNETEXPLORER = {'browserName': 'internet explorer', 'platform': 'WINDOWS', 'versi IPAD = {'browserName': 'iPad', 'platform': 'MAC', 'version': ''} IPHONE = {'browserName': 'iPhone', 'platform': 'MAC', 'version': ''} OPERA = {'browserName': 'opera', 'platform': 'ANY', 'version': ''} PHANTOMJS = {'browserName': 'phantomjs', 'javascriptEnabled': True, 'platform': 'ANY SAFARI = {'browserName': 'safari', 'platform': 'MAC', 'version': ''} WEBKITGTK = {'browserName': 'MiniBrowser', 'platform': 'ANY', 'version': ''} 7.7 Touch Actions The Touch Actions implementation class selenium.webdriver.common.touch_actions.TouchActions(driver) Bases: object Generate touch actions. Works like ActionChains; actions are stored in the TouchActions object and are fired with perform(). __init__(driver) Creates a new TouchActions object. Args • driver: The WebDriver instance which performs user actions. It should be with touch- screen enabled. double_tap(on_element) Double taps on a given element. Args • on_element: The element to tap. flick(xspeed, yspeed) Flicks, starting anywhere on the screen. Args • xspeed: The X speed in pixels per second. • yspeed: The Y speed in pixels per second. flick_element(on_element, xoffset, yoffset, speed) Flick starting at on_element, and moving by the xoffset and yoffset with specified speed. Args • on_element: Flick will start at center of element. • xoffset: X offset to flick to. • yoffset: Y offset to flick to. 44 Chapter 7. WebDriver API
  • 51. Selenium Python Bindings, Release 2 • speed: Pixels per second to flick. long_press(on_element) Long press on an element. Args • on_element: The element to long press. move(xcoord, ycoord) Move held tap to specified location. Args • xcoord: X Coordinate to move. • ycoord: Y Coordinate to move. perform() Performs all stored actions. release(xcoord, ycoord) Release previously issued tap ‘and hold’ command at specified location. Args • xcoord: X Coordinate to release. • ycoord: Y Coordinate to release. scroll(xoffset, yoffset) Touch and scroll, moving by xoffset and yoffset. Args • xoffset: X offset to scroll to. • yoffset: Y offset to scroll to. scroll_from_element(on_element, xoffset, yoffset) Touch and scroll starting at on_element, moving by xoffset and yoffset. Args • on_element: The element where scroll starts. • xoffset: X offset to scroll to. • yoffset: Y offset to scroll to. tap(on_element) Taps on a given element. Args • on_element: The element to tap. tap_and_hold(xcoord, ycoord) Touch down at given coordinates. Args • xcoord: X Coordinate to touch down. • ycoord: Y Coordinate to touch down. 7.7. Touch Actions 45
  • 52. Selenium Python Bindings, Release 2 7.8 Proxy The Proxy implementation. class selenium.webdriver.common.proxy.Proxy(raw=None) Bases: object Proxy contains information about proxy type and necessary proxy settings. __init__(raw=None) Creates a new Proxy. Args • raw: raw proxy data. If None, default class values are used. add_to_capabilities(capabilities) Adds proxy information as capability in specified capabilities. Args • capabilities: The capabilities to which proxy will be added. auto_detect Returns autodetect setting. autodetect = False ftpProxy = '' ftp_proxy Returns ftp proxy setting. httpProxy = '' http_proxy Returns http proxy setting. noProxy = '' no_proxy Returns noproxy setting. proxyAutoconfigUrl = '' proxyType = {'ff_value': 6, 'string': 'UNSPECIFIED'} proxy_autoconfig_url Returns proxy autoconfig url setting. proxy_type Returns proxy type as ProxyType. socksPassword = '' socksProxy = '' socksUsername = '' socks_password Returns socks proxy password setting. socks_proxy Returns socks proxy setting. 46 Chapter 7. WebDriver API
  • 53. Selenium Python Bindings, Release 2 socks_username Returns socks proxy username setting. sslProxy = '' ssl_proxy Returns https proxy setting. class selenium.webdriver.common.proxy.ProxyType Set of possible types of proxy. Each proxy type has 2 properties: ‘ff_value’ is value of Firefox profile preference, ‘string’ is id of proxy type. classmethod load(value) AUTODETECT = {'ff_value': 4, 'string': 'AUTODETECT'} DIRECT = {'ff_value': 0, 'string': 'DIRECT'} MANUAL = {'ff_value': 1, 'string': 'MANUAL'} PAC = {'ff_value': 2, 'string': 'PAC'} RESERVED_1 = {'ff_value': 3, 'string': 'RESERVED1'} SYSTEM = {'ff_value': 5, 'string': 'SYSTEM'} UNSPECIFIED = {'ff_value': 6, 'string': 'UNSPECIFIED'} class selenium.webdriver.common.proxy.ProxyTypeFactory Factory for proxy types. static make(ff_value, string) 7.9 Utilities The Utils methods. selenium.webdriver.common.utils.find_connectable_ip(host, port=None) Resolve a hostname to an IP, preferring IPv4 addresses. We prefer IPv4 so that we don’t change behavior from previous IPv4-only implementations, and because some drivers (e.g., FirefoxDriver) do not support IPv6 connections. If the optional port number is provided, only IPs that listen on the given port are considered. Args • host - A hostname. • port - Optional port number. Returns A single IP address, as a string. If any IPv4 address is found, one is returned. Otherwise, if any IPv6 address is found, one is returned. If neither, then None is returned. selenium.webdriver.common.utils.free_port() Determines a free port using sockets. selenium.webdriver.common.utils.is_connectable(port, host=’localhost’) Tries to connect to the server at port to see if it is running. Args • port - The port to connect. 7.9. Utilities 47
  • 54. Selenium Python Bindings, Release 2 selenium.webdriver.common.utils.is_url_connectable(port) Tries to connect to the HTTP server at /status path and specified port to see if it responds successfully. Args • port - The port to connect. selenium.webdriver.common.utils.join_host_port(host, port) Joins a hostname and port together. This is a minimal implementation intended to cope with IPv6 literals. For example, _join_host_port(‘::1’, 80) == ‘[::1]:80’. Args • host - A hostname. • port - An integer port. selenium.webdriver.common.utils.keys_to_typing(value) Processes the values that will be typed in the element. 7.10 Service class selenium.webdriver.common.service.Service(executable, port=0, log_file=-3, env=None, start_error_message=”) Bases: object __init__(executable, port=0, log_file=-3, env=None, start_error_message=”) x.__init__(...) initializes x; see help(type(x)) for signature assert_process_still_running() command_line_args() is_connectable() send_remote_shutdown_command() start() Starts the Service. Exceptions • WebDriverException : Raised either when it can’t start the service or when it can’t connect to the service stop() Stops the service. service_url Gets the url of the Service 7.11 Application Cache The ApplicationCache implementaion. class selenium.webdriver.common.html5.application_cache.ApplicationCache(driver) Bases: object 48 Chapter 7. WebDriver API
  • 55. Selenium Python Bindings, Release 2 __init__(driver) Creates a new Aplication Cache. Args • driver: The WebDriver instance which performs user actions. CHECKING = 2 DOWNLOADING = 3 IDLE = 1 OBSOLETE = 5 UNCACHED = 0 UPDATE_READY = 4 status Returns a current status of application cache. 7.12 Firefox WebDriver class selenium.webdriver.firefox.webdriver.WebDriver(firefox_profile=None, firefox_binary=None, timeout=30, capabili- ties=None, proxy=None, exe- cutable_path=’geckodriver’, options=None, ser- vice_log_path=’geckodriver.log’, firefox_options=None, service_args=None, de- sired_capabilities=None, log_path=None, keep_alive=True) Bases: selenium.webdriver.remote.webdriver.WebDriver __init__(firefox_profile=None, firefox_binary=None, timeout=30, capabilities=None, proxy=None, executable_path=’geckodriver’, options=None, service_log_path=’geckodriver.log’, fire- fox_options=None, service_args=None, desired_capabilities=None, log_path=None, keep_alive=True) Starts a new local session of Firefox. Based on the combination and specificity of the various keyword arguments, a capabilities dictionary will be constructed that is passed to the remote end. The keyword arguments given to this constructor are helpers to more easily allow Firefox WebDriver sessions to be customised with different options. They are mapped on to a capabilities dictionary that is passed on to the remote end. As some of the options, such as firefox_profile and options.profile are mutually exclusive, precedence is given from how specific the setting is. capabilities is the least specific keyword argument, followed by options, followed by firefox_binary and firefox_profile. In practice this means that if firefox_profile and options.profile are both set, the selected profile instance will always come from the most specific variable. In this case that would be firefox_profile. This will result in options.profile to be ignored because it is considered a less specific setting than the top-level firefox_profile keyword argument. Similarily, if you had specified a capabilities[“moz:firefoxOptions”][“profile”] Base64 string, this would rank below options.profile. 7.12. Firefox WebDriver 49
  • 56. Selenium Python Bindings, Release 2 Parameters • firefox_profile – Instance of FirefoxProfile object or a string. If undefined, a fresh profile will be created in a temporary location on the system. • firefox_binary – Instance of FirefoxBinary or full path to the Firefox binary. If undefined, the system default Firefox installation will be used. • timeout – Time to wait for Firefox to launch when using the extension connection. • capabilities – Dictionary of desired capabilities. • proxy – The proxy settings to us when communicating with Firefox via the extension connection. • executable_path – Full path to override which geckodriver binary to use for Firefox 47.0.1 and greater, which defaults to picking up the binary from the system path. • options – Instance of options.Options. • service_log_path – Where to log information from the driver. • firefox_options – Deprecated argument for options • service_args – List of args to pass to the driver service • desired_capabilities – alias of capabilities. In future versions of this library, this will replace ‘capabilities’. This will make the signature consistent with RemoteWebDriver. • log_path – Deprecated argument for service_log_path • keep_alive – Whether to configure remote_connection.RemoteConnection to use HTTP keep-alive. context(**kwds) Sets the context that Selenium commands are running in using a with statement. The state of the context on the server is saved before entering the block, and restored upon exiting it. Parameters context – Context, may be one of the class properties CONTEXT_CHROME or CONTEXT_CONTENT. Usage example: with selenium.context(selenium.CONTEXT_CHROME): # chrome scope ... do stuff ... install_addon(path, temporary=None) Installs Firefox addon. Returns identifier of installed addon. This identifier can later be used to uninstall addon. Parameters path – Absolute path to the addon that will be installed. Usage driver.install_addon(‘/path/to/firebug.xpi’) quit() Quits the driver and close every associated window. set_context(context) uninstall_addon(identifier) Uninstalls Firefox addon using its identifier. Usage driver.uninstall_addon(‘[email protected]’) 50 Chapter 7. WebDriver API
  • 57. Selenium Python Bindings, Release 2 CONTEXT_CHROME = 'chrome' CONTEXT_CONTENT = 'content' NATIVE_EVENTS_ALLOWED = True firefox_profile 7.13 Firefox WebDriver Options class selenium.webdriver.firefox.options.Log Bases: object __init__() x.__init__(...) initializes x; see help(type(x)) for signature to_capabilities() class selenium.webdriver.firefox.options.Options Bases: object __init__() x.__init__(...) initializes x; see help(type(x)) for signature add_argument(argument) Add argument to be used for the browser process. set_capability(name, value) Sets a capability. set_headless(headless=True) Deprecated, options.headless = True set_preference(name, value) Sets a preference. to_capabilities() Marshals the Firefox options to a moz:firefoxOptions object. KEY = 'moz:firefoxOptions' accept_insecure_certs arguments Returns a list of browser process arguments. binary Returns the FirefoxBinary instance binary_location Returns the location of the binary. capabilities headless Returns whether or not the headless argument is set preferences Returns a dict of preferences. profile Returns the Firefox profile to use. 7.13. Firefox WebDriver Options 51
  • 58. Selenium Python Bindings, Release 2 proxy returns Proxy if set otherwise None. 7.14 Firefox WebDriver Profile exception selenium.webdriver.firefox.firefox_profile.AddonFormatError Bases: exceptions.Exception Exception for not well-formed add-on manifest files class selenium.webdriver.firefox.firefox_profile.FirefoxProfile(profile_directory=None) Bases: object __init__(profile_directory=None) Initialises a new instance of a Firefox Profile Args • profile_directory: Directory of profile that you want to use. If a directory is passed in it will be cloned and the cloned directory will be used by the driver when instantiated. This defaults to None and will create a new directory when object is created. add_extension(extension=’webdriver.xpi’) set_preference(key, value) sets the preference that we want in the profile. set_proxy(proxy) update_preferences() ANONYMOUS_PROFILE_NAME = 'WEBDRIVER_ANONYMOUS_PROFILE' DEFAULT_PREFERENCES = None accept_untrusted_certs assume_untrusted_cert_issuer encoded A zipped, base64 encoded string of profile directory for use with remote WebDriver JSON wire protocol native_events_enabled path Gets the profile directory that is currently being used port Gets the port that WebDriver is working on 7.15 Firefox WebDriver Binary class selenium.webdriver.firefox.firefox_binary.FirefoxBinary(firefox_path=None, log_file=None) Bases: object __init__(firefox_path=None, log_file=None) Creates a new instance of Firefox binary. Args 52 Chapter 7. WebDriver API
  • 59. Selenium Python Bindings, Release 2 • firefox_path - Path to the Firefox executable. By default, it will be detected from the standard locations. • log_file - A file object to redirect the firefox process output to. It can be sys.stdout. Please note that with parallel run the output won’t be synchronous. By default, it will be redirected to /dev/null. add_command_line_options(*args) kill() Kill the browser. This is useful when the browser is stuck. launch_browser(profile, timeout=30) Launches the browser for the given profile name. It is assumed the profile already exists. which(fname) Returns the fully qualified path by searching Path of the given name NO_FOCUS_LIBRARY_NAME = 'x_ignore_nofocus.so' 7.16 Firefox WebDriver Extension Connection exception selenium.webdriver.firefox.extension_connection.ExtensionConnectionError Bases: exceptions.Exception An internal error occurred int the extension. Might be caused by bad input or bugs in webdriver class selenium.webdriver.firefox.extension_connection.ExtensionConnection(host, fire- fox_profile, fire- fox_binary=None, time- out=30) Bases: selenium.webdriver.remote.remote_connection.RemoteConnection __init__(host, firefox_profile, firefox_binary=None, timeout=30) x.__init__(...) initializes x; see help(type(x)) for signature connect() Connects to the extension and retrieves the session id. classmethod connect_and_quit() Connects to an running browser and quit immediately. classmethod is_connectable() Trys to connect to the extension but do not retrieve context. quit(sessionId=None) 7.16. Firefox WebDriver Extension Connection 53
  • 60. Selenium Python Bindings, Release 2 7.17 Chrome WebDriver class selenium.webdriver.chrome.webdriver.WebDriver(executable_path=’chromedriver’, port=0, options=None, service_args=None, de- sired_capabilities=None, service_log_path=None, chrome_options=None, keep_alive=True) Bases: selenium.webdriver.remote.webdriver.WebDriver Controls the ChromeDriver and allows you to drive the browser. You will need to download the ChromeDriver executable from http://chromedriver.storage.googleapis.com/ index.html __init__(executable_path=’chromedriver’, port=0, options=None, service_args=None, desired_capabilities=None, service_log_path=None, chrome_options=None, keep_alive=True) Creates a new instance of the chrome driver. Starts the service and then creates new instance of chrome driver. Args • executable_path - path to the executable. If the default is used it assumes the executable is in the $PATH • port - port you would like the service to run, if left as 0, a free port will be found. • options - this takes an instance of ChromeOptions • service_args - List of args to pass to the driver service • desired_capabilities - Dictionary object with non-browser specific capabilities only, such as “proxy” or “loggingPref”. • service_log_path - Where to log information from the driver. • chrome_options - Deprecated argument for options • keep_alive - Whether to configure ChromeRemoteConnection to use HTTP keep-alive. create_options() execute_cdp_cmd(cmd, cmd_args) Execute Chrome Devtools Protocol command and get returned result The command and command args should follow chrome devtools protocol domains/commands, refer to link https://chromedevtools.github.io/devtools-protocol/ Args • cmd: A str, command name • cmd_args: A dict, command args. empty dict {} if there is no command args Usage driver.execute_cdp_cmd(‘Network.getResponseBody’, {‘requestId’: requestId}) Returns A dict, empty dict {} if there is no result to return. For example to getResponseBody: {‘base64Encoded’: False, ‘body’: ‘response body string’} get_network_conditions() Gets Chrome network emulation settings. 54 Chapter 7. WebDriver API
  • 61. Selenium Python Bindings, Release 2 Returns A dict. For example: {‘latency’: 4, ‘download_throughput’: 2, ‘upload_throughput’: 2, ‘offline’: False} launch_app(id) Launches Chrome app specified by id. quit() Closes the browser and shuts down the ChromeDriver executable that is started when starting the ChromeDriver set_network_conditions(**network_conditions) Sets Chrome network emulation settings. Args • network_conditions: A dict with conditions specification. Usage driver.set_network_conditions( offline=False, latency=5, # additional latency (ms) down- load_throughput=500 * 1024, # maximal throughput upload_throughput=500 * 1024) # maximal throughput Note: ‘throughput’ can be used to set both (for download and upload). 7.18 Chrome WebDriver Options class selenium.webdriver.chrome.options.Options Bases: object __init__() x.__init__(...) initializes x; see help(type(x)) for signature add_argument(argument) Adds an argument to the list Args • Sets the arguments add_encoded_extension(extension) Adds Base64 encoded string with extension data to a list that will be used to extract it to the ChromeDriver Args • extension: Base64 encoded string with extension data add_experimental_option(name, value) Adds an experimental option which is passed to chrome. Args: name: The experimental option name. value: The option value. add_extension(extension) Adds the path to the extension to a list that will be used to extract it to the ChromeDriver Args • extension: path to the *.crx file set_capability(name, value) Sets a capability. 7.18. Chrome WebDriver Options 55
  • 62. Selenium Python Bindings, Release 2 set_headless(headless=True) Deprecated, options.headless = True to_capabilities() Creates a capabilities with all the options that have been set and returns a dictionary with everything KEY = 'goog:chromeOptions' arguments Returns a list of arguments needed for the browser binary_location Returns the location of the binary otherwise an empty string capabilities debugger_address Returns the address of the remote devtools instance experimental_options Returns a dictionary of experimental options for chrome. extensions Returns a list of encoded extensions that will be loaded into chrome headless Returns whether or not the headless argument is set 7.19 Chrome WebDriver Service class selenium.webdriver.chrome.service.Service(executable_path, port=0, ser- vice_args=None, log_path=None, env=None) Bases: selenium.webdriver.common.service.Service Object that manages the starting and stopping of the ChromeDriver __init__(executable_path, port=0, service_args=None, log_path=None, env=None) Creates a new instance of the Service Args • executable_path : Path to the ChromeDriver • port : Port the service is running on • service_args : List of args to pass to the chromedriver service • log_path : Path for the chromedriver service to log to command_line_args() 7.20 Remote WebDriver The WebDriver implementation. 56 Chapter 7. WebDriver API
  • 63. Selenium Python Bindings, Release 2 class selenium.webdriver.remote.webdriver.WebDriver(command_executor=’http://127.0.0.1:4444/wd/hub’, desired_capabilities=None, browser_profile=None, proxy=None, keep_alive=False, file_detector=None, op- tions=None) Bases: object Controls a browser by sending commands to a remote server. This server is expected to be running the Web- Driver wire protocol as defined at https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol Attributes • session_id - String ID of the browser session started and controlled by this WebDriver. • capabilities - Dictionaty of effective capabilities of this browser session as returned by the remote server. See https://github.com/SeleniumHQ/selenium/wiki/ DesiredCapabilities • command_executor - remote_connection.RemoteConnection object used to execute com- mands. • error_handler - errorhandler.ErrorHandler object used to handle errors. __init__(command_executor=’http://127.0.0.1:4444/wd/hub’, desired_capabilities=None, browser_profile=None, proxy=None, keep_alive=False, file_detector=None, op- tions=None) Create a new driver that will issue commands using the wire protocol. Args • command_executor - Either a string representing URL of the remote server or a custom remote_connection.RemoteConnection object. Defaults to ‘http://127.0.0.1: 4444/wd/hub’. • desired_capabilities - A dictionary of capabilities to request when starting the browser session. Required parameter. • browser_profile - A selenium.webdriver.firefox.firefox_profile.FirefoxProfile object. Only used if Firefox is requested. Optional. • proxy - A selenium.webdriver.common.proxy.Proxy object. The browser session will be started with given proxy settings, if possible. Optional. • keep_alive - Whether to configure remote_connection.RemoteConnection to use HTTP keep-alive. Defaults to False. • file_detector - Pass custom file detector object during instantiation. If None, then default LocalFileDetector() will be used. • options - instance of a driver options.Options class add_cookie(cookie_dict) Adds a cookie to your current session. Args • cookie_dict: A dictionary object, with required keys - “name” and “value”; optional keys - “path”, “domain”, “secure”, “expiry” Usage: driver.add_cookie({‘name’ : ‘foo’, ‘value’ : ‘bar’}) driver.add_cookie({‘name’ : ‘foo’, ‘value’ : ‘bar’, ‘path’ : ‘/’}) driver.add_cookie({‘name’ : ‘foo’, ‘value’ : ‘bar’, ‘path’ : ‘/’, ‘secure’:True}) 7.20. Remote WebDriver 57
  • 64. Selenium Python Bindings, Release 2 back() Goes one step backward in the browser history. Usage driver.back() close() Closes the current window. Usage driver.close() create_web_element(element_id) Creates a web element with the specified element_id. delete_all_cookies() Delete all cookies in the scope of the session. Usage driver.delete_all_cookies() delete_cookie(name) Deletes a single cookie with the given name. Usage driver.delete_cookie(‘my_cookie’) execute(driver_command, params=None) Sends a command to be executed by a command.CommandExecutor. Args • driver_command: The name of the command to execute as a string. • params: A dictionary of named parameters to send with the command. Returns The command’s JSON response loaded into a dictionary object. execute_async_script(script, *args) Asynchronously Executes JavaScript in the current window/frame. Args • script: The JavaScript to execute. • *args: Any applicable arguments for your JavaScript. Usage script = “var callback = arguments[arguments.length - 1]; ” “window.setTimeout(function(){ callback(‘timeout’) }, 3000);” driver.execute_async_script(script) execute_script(script, *args) Synchronously Executes JavaScript in the current window/frame. Args • script: The JavaScript to execute. • *args: Any applicable arguments for your JavaScript. Usage driver.execute_script(‘return document.title;’) file_detector_context(**kwds) Overrides the current file detector (if necessary) in limited context. Ensures the original file detector is set afterwards. Example: with webdriver.file_detector_context(UselessFileDetector): someinput.send_keys(‘/etc/hosts’) Args 58 Chapter 7. WebDriver API
  • 65. Selenium Python Bindings, Release 2 • file_detector_class - Class of the desired file detector. If the class is different from the current file_detector, then the class is instantiated with args and kwargs and used as a file detector during the duration of the context manager. • args - Optional arguments that get passed to the file detector class during instantiation. • kwargs - Keyword arguments, passed the same way as args. find_element(by=’id’, value=None) Find an element given a By strategy and locator. Prefer the find_element_by_* methods when possible. Usage element = driver.find_element(By.ID, ‘foo’) Return type WebElement find_element_by_class_name(name) Finds an element by class name. Args • name: The class name of the element to find. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_class_name(‘foo’) find_element_by_css_selector(css_selector) Finds an element by css selector. Args • css_selector - CSS selector string, ex: ‘a.nav#home’ Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_css_selector(‘#foo’) find_element_by_id(id_) Finds an element by id. Args • id_ - The id of the element to be found. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_id(‘foo’) 7.20. Remote WebDriver 59
  • 66. Selenium Python Bindings, Release 2 find_element_by_link_text(link_text) Finds an element by link text. Args • link_text: The text of the element to be found. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_link_text(‘Sign In’) find_element_by_name(name) Finds an element by name. Args • name: The name of the element to find. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_name(‘foo’) find_element_by_partial_link_text(link_text) Finds an element by a partial match of its link text. Args • link_text: The text of the element to partially match on. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_partial_link_text(‘Sign’) find_element_by_tag_name(name) Finds an element by tag name. Args • name - name of html tag (eg: h1, a, span) Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_tag_name(‘h1’) find_element_by_xpath(xpath) Finds an element by xpath. 60 Chapter 7. WebDriver API
  • 67. Selenium Python Bindings, Release 2 Args • xpath - The xpath locator of the element to find. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = driver.find_element_by_xpath(‘//div/td[1]’) find_elements(by=’id’, value=None) Find elements given a By strategy and locator. Prefer the find_elements_by_* methods when possible. Usage elements = driver.find_elements(By.CLASS_NAME, ‘foo’) Return type list of WebElement find_elements_by_class_name(name) Finds elements by class name. Args • name: The class name of the elements to find. Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = driver.find_elements_by_class_name(‘foo’) find_elements_by_css_selector(css_selector) Finds elements by css selector. Args • css_selector - CSS selector string, ex: ‘a.nav#home’ Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = driver.find_elements_by_css_selector(‘.foo’) find_elements_by_id(id_) Finds multiple elements by id. Args • id_ - The id of the elements to be found. Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = driver.find_elements_by_id(‘foo’) find_elements_by_link_text(text) Finds elements by link text. Args • link_text: The text of the elements to be found. Returns • list of webelement - a list with elements if any was found. an empty list if not 7.20. Remote WebDriver 61
  • 68. Selenium Python Bindings, Release 2 Usage elements = driver.find_elements_by_link_text(‘Sign In’) find_elements_by_name(name) Finds elements by name. Args • name: The name of the elements to find. Returns • list of webelement - a list with elements if any was found. an empty list if not Usage elements = driver.find_elements_by_name(‘foo’) find_elements_by_partial_link_text(link_text) Finds elements by a partial match of their link text. Args • link_text: The text of the element to partial match on. Returns • list of webelement - a list with elements if any was found. an empty list if not Usage elements = driver.find_elements_by_partial_link_text(‘Sign’) find_elements_by_tag_name(name) Finds elements by tag name. Args • name - name of html tag (eg: h1, a, span) Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = driver.find_elements_by_tag_name(‘h1’) find_elements_by_xpath(xpath) Finds multiple elements by xpath. Args • xpath - The xpath locator of the elements to be found. Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = driver.find_elements_by_xpath(“//div[contains(@class, ‘foo’)]”) forward() Goes one step forward in the browser history. Usage driver.forward() fullscreen_window() Invokes the window manager-specific ‘full screen’ operation get(url) Loads a web page in the current browser session. get_cookie(name) Get a single cookie by name. Returns the cookie if found, None if not. Usage driver.get_cookie(‘my_cookie’) 62 Chapter 7. WebDriver API
  • 69. Selenium Python Bindings, Release 2 get_cookies() Returns a set of dictionaries, corresponding to cookies visible in the current session. Usage driver.get_cookies() get_log(log_type) Gets the log for a given log type Args • log_type: type of log that which will be returned Usage driver.get_log(‘browser’) driver.get_log(‘driver’) driver.get_log(‘client’) driver.get_log(‘server’) get_screenshot_as_base64() Gets the screenshot of the current window as a base64 encoded string which is useful in embedded images in HTML. Usage driver.get_screenshot_as_base64() get_screenshot_as_file(filename) Saves a screenshot of the current window to a PNG image file. Returns False if there is any IOError, else returns True. Use full paths in your filename. Args • filename: The full path you wish to save your screenshot to. This should end with a .png extension. Usage driver.get_screenshot_as_file(‘/Screenshots/foo.png’) get_screenshot_as_png() Gets the screenshot of the current window as a binary data. Usage driver.get_screenshot_as_png() get_window_position(windowHandle=’current’) Gets the x,y position of the current window. Usage driver.get_window_position() get_window_rect() Gets the x, y coordinates of the window as well as height and width of the current window. Usage driver.get_window_rect() get_window_size(windowHandle=’current’) Gets the width and height of the current window. Usage driver.get_window_size() implicitly_wait(time_to_wait) Sets a sticky timeout to implicitly wait for an element to be found, or a command to complete. This method only needs to be called one time per session. To set the timeout for calls to exe- cute_async_script, see set_script_timeout. Args • time_to_wait: Amount of time to wait (in seconds) 7.20. Remote WebDriver 63
  • 70. Selenium Python Bindings, Release 2 Usage driver.implicitly_wait(30) maximize_window() Maximizes the current window that webdriver is using minimize_window() Invokes the window manager-specific ‘minimize’ operation quit() Quits the driver and closes every associated window. Usage driver.quit() refresh() Refreshes the current page. Usage driver.refresh() save_screenshot(filename) Saves a screenshot of the current window to a PNG image file. Returns False if there is any IOError, else returns True. Use full paths in your filename. Args • filename: The full path you wish to save your screenshot to. This should end with a .png extension. Usage driver.save_screenshot(‘/Screenshots/foo.png’) set_page_load_timeout(time_to_wait) Set the amount of time to wait for a page load to complete before throwing an error. Args • time_to_wait: The amount of time to wait Usage driver.set_page_load_timeout(30) set_script_timeout(time_to_wait) Set the amount of time that the script should wait during an execute_async_script call before throw- ing an error. Args • time_to_wait: The amount of time to wait (in seconds) Usage driver.set_script_timeout(30) set_window_position(x, y, windowHandle=’current’) Sets the x,y position of the current window. (window.moveTo) Args • x: the x-coordinate in pixels to set the window position • y: the y-coordinate in pixels to set the window position Usage driver.set_window_position(0,0) set_window_rect(x=None, y=None, width=None, height=None) Sets the x, y coordinates of the window as well as height and width of the current window. 64 Chapter 7. WebDriver API
  • 71. Selenium Python Bindings, Release 2 Usage driver.set_window_rect(x=10, y=10) driver.set_window_rect(width=100, height=200) driver.set_window_rect(x=10, y=10, width=100, height=200) set_window_size(width, height, windowHandle=’current’) Sets the width and height of the current window. (window.resizeTo) Args • width: the width in pixels to set the window to • height: the height in pixels to set the window to Usage driver.set_window_size(800,600) start_client() Called before starting a new session. This method may be overridden to define custom startup behavior. start_session(capabilities, browser_profile=None) Creates a new session with the desired capabilities. Args • browser_name - The name of the browser to request. • version - Which browser version to request. • platform - Which platform to request the browser on. • javascript_enabled - Whether the new session should support JavaScript. • browser_profile - A selenium.webdriver.firefox.firefox_profile.FirefoxProfile object. Only used if Firefox is requested. stop_client() Called after executing a quit command. This method may be overridden to define custom shutdown be- havior. switch_to_active_element() Deprecated use driver.switch_to.active_element switch_to_alert() Deprecated use driver.switch_to.alert switch_to_default_content() Deprecated use driver.switch_to.default_content switch_to_frame(frame_reference) Deprecated use driver.switch_to.frame switch_to_window(window_name) Deprecated use driver.switch_to.window application_cache Returns a ApplicationCache Object to interact with the browser app cache current_url Gets the URL of the current page. Usage driver.current_url current_window_handle Returns the handle of the current window. Usage driver.current_window_handle 7.20. Remote WebDriver 65
  • 72. Selenium Python Bindings, Release 2 desired_capabilities returns the drivers current desired capabilities being used file_detector log_types Gets a list of the available log types Usage driver.log_types mobile name Returns the name of the underlying browser for this instance. Usage name = driver.name orientation Gets the current orientation of the device Usage orientation = driver.orientation page_source Gets the source of the current page. Usage driver.page_source switch_to Returns • SwitchTo: an object containing all options to switch focus into Usage element = driver.switch_to.active_element alert = driver.switch_to.alert driver.switch_to.default_content() driver.switch_to.frame(‘frame_name’) driver.switch_to.frame(1) driver.switch_to.frame(driver.find_elements_by_tag_name(“iframe”)[0]) driver.switch_to.parent_frame() driver.switch_to.window(‘main’) title Returns the title of the current page. Usage title = driver.title window_handles Returns the handles of all windows within the current session. Usage driver.window_handles 7.21 Remote WebDriver WebElement class selenium.webdriver.remote.webelement.WebElement(parent, id_, w3c=False) Bases: object Represents a DOM element. Generally, all interesting operations that interact with a document will be performed through this interface. All method calls will do a freshness check to ensure that the element reference is still valid. This es- sentially determines whether or not the element is still attached to the DOM. If this test fails, then an StaleElementReferenceException is thrown, and all future calls to this instance will fail. __init__(parent, id_, w3c=False) x.__init__(...) initializes x; see help(type(x)) for signature 66 Chapter 7. WebDriver API
  • 73. Selenium Python Bindings, Release 2 clear() Clears the text if it’s a text entry element. click() Clicks the element. find_element(by=’id’, value=None) Find an element given a By strategy and locator. Prefer the find_element_by_* methods when possible. Usage element = element.find_element(By.ID, ‘foo’) Return type WebElement find_element_by_class_name(name) Finds element within this element’s children by class name. Args • name: The class name of the element to find. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = element.find_element_by_class_name(‘foo’) find_element_by_css_selector(css_selector) Finds element within this element’s children by CSS selector. Args • css_selector - CSS selector string, ex: ‘a.nav#home’ Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = element.find_element_by_css_selector(‘#foo’) find_element_by_id(id_) Finds element within this element’s children by ID. Args • id_ - ID of child element to locate. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage foo_element = element.find_element_by_id(‘foo’) find_element_by_link_text(link_text) Finds element within this element’s children by visible link text. Args 7.21. Remote WebDriver WebElement 67
  • 74. Selenium Python Bindings, Release 2 • link_text - Link text string to search for. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = element.find_element_by_link_text(‘Sign In’) find_element_by_name(name) Finds element within this element’s children by name. Args • name - name property of the element to find. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = element.find_element_by_name(‘foo’) find_element_by_partial_link_text(link_text) Finds element within this element’s children by partially visible link text. Args • link_text: The text of the element to partially match on. Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = element.find_element_by_partial_link_text(‘Sign’) find_element_by_tag_name(name) Finds element within this element’s children by tag name. Args • name - name of html tag (eg: h1, a, span) Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = element.find_element_by_tag_name(‘h1’) find_element_by_xpath(xpath) Finds element by xpath. Args • xpath - xpath of element to locate. “//input[@class=’myelement’]” 68 Chapter 7. WebDriver API
  • 75. Selenium Python Bindings, Release 2 Note: The base path will be relative to this element’s location. This will select the first link under this element. myelement.find_element_by_xpath(".//a") However, this will select the first link on the page. myelement.find_element_by_xpath("//a") Returns • WebElement - the element if it was found Raises • NoSuchElementException - if the element wasn’t found Usage element = element.find_element_by_xpath(‘//div/td[1]’) find_elements(by=’id’, value=None) Find elements given a By strategy and locator. Prefer the find_elements_by_* methods when possible. Usage element = element.find_elements(By.CLASS_NAME, ‘foo’) Return type list of WebElement find_elements_by_class_name(name) Finds a list of elements within this element’s children by class name. Args • name: The class name of the elements to find. Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = element.find_elements_by_class_name(‘foo’) find_elements_by_css_selector(css_selector) Finds a list of elements within this element’s children by CSS selector. Args • css_selector - CSS selector string, ex: ‘a.nav#home’ Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = element.find_elements_by_css_selector(‘.foo’) find_elements_by_id(id_) Finds a list of elements within this element’s children by ID. Will return a list of webelements if found, or an empty list if not. Args • id_ - Id of child element to find. Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = element.find_elements_by_id(‘foo’) 7.21. Remote WebDriver WebElement 69
  • 76. Selenium Python Bindings, Release 2 find_elements_by_link_text(link_text) Finds a list of elements within this element’s children by visible link text. Args • link_text - Link text string to search for. Returns • list of webelement - a list with elements if any was found. an empty list if not Usage elements = element.find_elements_by_link_text(‘Sign In’) find_elements_by_name(name) Finds a list of elements within this element’s children by name. Args • name - name property to search for. Returns • list of webelement - a list with elements if any was found. an empty list if not Usage elements = element.find_elements_by_name(‘foo’) find_elements_by_partial_link_text(link_text) Finds a list of elements within this element’s children by link text. Args • link_text: The text of the element to partial match on. Returns • list of webelement - a list with elements if any was found. an empty list if not Usage elements = element.find_elements_by_partial_link_text(‘Sign’) find_elements_by_tag_name(name) Finds a list of elements within this element’s children by tag name. Args • name - name of html tag (eg: h1, a, span) Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = element.find_elements_by_tag_name(‘h1’) find_elements_by_xpath(xpath) Finds elements within the element by xpath. Args • xpath - xpath locator string. Note: The base path will be relative to this element’s location. This will select all links under this element. myelement.find_elements_by_xpath(".//a") However, this will select all links in the page itself. 70 Chapter 7. WebDriver API
  • 77. Selenium Python Bindings, Release 2 myelement.find_elements_by_xpath("//a") Returns • list of WebElement - a list with elements if any was found. An empty list if not Usage elements = element.find_elements_by_xpath(“//div[contains(@class, ‘foo’)]”) get_attribute(name) Gets the given attribute or property of the element. This method will first try to return the value of a property with the given name. If a property with that name doesn’t exist, it returns the value of the attribute with the same name. If there’s no attribute with that name, None is returned. Values which are considered truthy, that is equals “true” or “false”, are returned as booleans. All other non-None values are returned as strings. For attributes or properties which do not exist, None is returned. Args • name - Name of the attribute/property to retrieve. Example: # Check if the "active" CSS class is applied to an element. is_active = "active" in target_element.get_attribute("class") get_property(name) Gets the given property of the element. Args • name - Name of the property to retrieve. Example: text_length = target_element.get_property("text_length") is_displayed() Whether the element is visible to a user. is_enabled() Returns whether the element is enabled. is_selected() Returns whether the element is selected. Can be used to check if a checkbox or radio button is selected. screenshot(filename) Saves a screenshot of the current element to a PNG image file. Returns False if there is any IOError, else returns True. Use full paths in your filename. Args • filename: The full path you wish to save your screenshot to. This should end with a .png extension. Usage element.screenshot(‘/Screenshots/foo.png’) 7.21. Remote WebDriver WebElement 71
  • 78. Selenium Python Bindings, Release 2 send_keys(*value) Simulates typing into the element. Args • value - A string for typing, or setting form fields. For setting file inputs, this could be a local file path. Use this to send simple key events or to fill out form fields: form_textfield = driver.find_element_by_name('username') form_textfield.send_keys("admin") This can also be used to set file inputs. file_input = driver.find_element_by_name('profilePic') file_input.send_keys("path/to/profilepic.gif") # Generally it's better to wrap the file path in one of the methods # in os.path to return the actual path to support cross OS testing. # file_input.send_keys(os.path.abspath("path/to/profilepic.gif")) submit() Submits a form. value_of_css_property(property_name) The value of a CSS property. id Internal ID used by selenium. This is mainly for internal use. Simple use cases such as checking if 2 webelements refer to the same element, can be done using ==: if element1 == element2: print("These 2 are equal") location The location of the element in the renderable canvas. location_once_scrolled_into_view THIS PROPERTY MAY CHANGE WITHOUT WARNING. Use this to discover where on the screen an element is so that we can click it. This method should cause the element to be scrolled into view. Returns the top lefthand corner location on the screen, or None if the element is not visible. parent Internal reference to the WebDriver instance this element was found from. rect A dictionary with the size and location of the element. screenshot_as_base64 Gets the screenshot of the current element as a base64 encoded string. Usage img_b64 = element.screenshot_as_base64 screenshot_as_png Gets the screenshot of the current element as a binary data. Usage element_png = element.screenshot_as_png size The size of the element. 72 Chapter 7. WebDriver API
  • 79. Selenium Python Bindings, Release 2 tag_name This element’s tagName property. text The text of the element. 7.22 Remote WebDriver Command class selenium.webdriver.remote.command.Command Bases: object Defines constants for the standard WebDriver commands. While these constants have no meaning in and of themselves, they are used to marshal commands through a service that implements WebDriver’s remote wire protocol: https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol ACCEPT_ALERT = 'acceptAlert' ADD_COOKIE = 'addCookie' CLEAR_APP_CACHE = 'clearAppCache' CLEAR_ELEMENT = 'clearElement' CLEAR_LOCAL_STORAGE = 'clearLocalStorage' CLEAR_SESSION_STORAGE = 'clearSessionStorage' CLICK = 'mouseClick' CLICK_ELEMENT = 'clickElement' CLOSE = 'close' CONTEXT_HANDLES = 'getContextHandles' CURRENT_CONTEXT_HANDLE = 'getCurrentContextHandle' DELETE_ALL_COOKIES = 'deleteAllCookies' DELETE_COOKIE = 'deleteCookie' DELETE_SESSION = 'deleteSession' DISMISS_ALERT = 'dismissAlert' DOUBLE_CLICK = 'mouseDoubleClick' DOUBLE_TAP = 'touchDoubleTap' ELEMENT_SCREENSHOT = 'elementScreenshot' EXECUTE_ASYNC_SCRIPT = 'executeAsyncScript' EXECUTE_SCRIPT = 'executeScript' EXECUTE_SQL = 'executeSql' FIND_CHILD_ELEMENT = 'findChildElement' FIND_CHILD_ELEMENTS = 'findChildElements' FIND_ELEMENT = 'findElement' FIND_ELEMENTS = 'findElements' 7.22. Remote WebDriver Command 73
  • 80. Selenium Python Bindings, Release 2 FLICK = 'touchFlick' FULLSCREEN_WINDOW = 'fullscreenWindow' GET = 'get' GET_ACTIVE_ELEMENT = 'getActiveElement' GET_ALERT_TEXT = 'getAlertText' GET_ALL_COOKIES = 'getCookies' GET_ALL_SESSIONS = 'getAllSessions' GET_APP_CACHE = 'getAppCache' GET_APP_CACHE_STATUS = 'getAppCacheStatus' GET_AVAILABLE_LOG_TYPES = 'getAvailableLogTypes' GET_COOKIE = 'getCookie' GET_CURRENT_URL = 'getCurrentUrl' GET_CURRENT_WINDOW_HANDLE = 'getCurrentWindowHandle' GET_ELEMENT_ATTRIBUTE = 'getElementAttribute' GET_ELEMENT_LOCATION = 'getElementLocation' GET_ELEMENT_LOCATION_ONCE_SCROLLED_INTO_VIEW = 'getElementLocationOnceScrolledIntoView' GET_ELEMENT_PROPERTY = 'getElementProperty' GET_ELEMENT_RECT = 'getElementRect' GET_ELEMENT_SIZE = 'getElementSize' GET_ELEMENT_TAG_NAME = 'getElementTagName' GET_ELEMENT_TEXT = 'getElementText' GET_ELEMENT_VALUE = 'getElementValue' GET_ELEMENT_VALUE_OF_CSS_PROPERTY = 'getElementValueOfCssProperty' GET_LOCAL_STORAGE_ITEM = 'getLocalStorageItem' GET_LOCAL_STORAGE_KEYS = 'getLocalStorageKeys' GET_LOCAL_STORAGE_SIZE = 'getLocalStorageSize' GET_LOCATION = 'getLocation' GET_LOG = 'getLog' GET_NETWORK_CONNECTION = 'getNetworkConnection' GET_PAGE_SOURCE = 'getPageSource' GET_SCREEN_ORIENTATION = 'getScreenOrientation' GET_SESSION_STORAGE_ITEM = 'getSessionStorageItem' GET_SESSION_STORAGE_KEYS = 'getSessionStorageKeys' GET_SESSION_STORAGE_SIZE = 'getSessionStorageSize' GET_TITLE = 'getTitle' GET_WINDOW_HANDLES = 'getWindowHandles' 74 Chapter 7. WebDriver API
  • 81. Selenium Python Bindings, Release 2 GET_WINDOW_POSITION = 'getWindowPosition' GET_WINDOW_RECT = 'getWindowRect' GET_WINDOW_SIZE = 'getWindowSize' GO_BACK = 'goBack' GO_FORWARD = 'goForward' IMPLICIT_WAIT = 'implicitlyWait' IS_ELEMENT_DISPLAYED = 'isElementDisplayed' IS_ELEMENT_ENABLED = 'isElementEnabled' IS_ELEMENT_SELECTED = 'isElementSelected' LONG_PRESS = 'touchLongPress' MAXIMIZE_WINDOW = 'windowMaximize' MINIMIZE_WINDOW = 'minimizeWindow' MOUSE_DOWN = 'mouseButtonDown' MOUSE_UP = 'mouseButtonUp' MOVE_TO = 'mouseMoveTo' NEW_SESSION = 'newSession' QUIT = 'quit' REFRESH = 'refresh' REMOVE_LOCAL_STORAGE_ITEM = 'removeLocalStorageItem' REMOVE_SESSION_STORAGE_ITEM = 'removeSessionStorageItem' SCREENSHOT = 'screenshot' SEND_KEYS_TO_ACTIVE_ELEMENT = 'sendKeysToActiveElement' SEND_KEYS_TO_ELEMENT = 'sendKeysToElement' SET_ALERT_CREDENTIALS = 'setAlertCredentials' SET_ALERT_VALUE = 'setAlertValue' SET_ELEMENT_SELECTED = 'setElementSelected' SET_LOCAL_STORAGE_ITEM = 'setLocalStorageItem' SET_LOCATION = 'setLocation' SET_NETWORK_CONNECTION = 'setNetworkConnection' SET_SCREEN_ORIENTATION = 'setScreenOrientation' SET_SCRIPT_TIMEOUT = 'setScriptTimeout' SET_SESSION_STORAGE_ITEM = 'setSessionStorageItem' SET_TIMEOUTS = 'setTimeouts' SET_WINDOW_POSITION = 'setWindowPosition' SET_WINDOW_RECT = 'setWindowRect' SET_WINDOW_SIZE = 'setWindowSize' 7.22. Remote WebDriver Command 75
  • 82. Selenium Python Bindings, Release 2 SINGLE_TAP = 'touchSingleTap' STATUS = 'status' SUBMIT_ELEMENT = 'submitElement' SWITCH_TO_CONTEXT = 'switchToContext' SWITCH_TO_FRAME = 'switchToFrame' SWITCH_TO_PARENT_FRAME = 'switchToParentFrame' SWITCH_TO_WINDOW = 'switchToWindow' TOUCH_DOWN = 'touchDown' TOUCH_MOVE = 'touchMove' TOUCH_SCROLL = 'touchScroll' TOUCH_UP = 'touchUp' UPLOAD_FILE = 'uploadFile' W3C_ACCEPT_ALERT = 'w3cAcceptAlert' W3C_ACTIONS = 'actions' W3C_CLEAR_ACTIONS = 'clearActionState' W3C_DISMISS_ALERT = 'w3cDismissAlert' W3C_EXECUTE_SCRIPT = 'w3cExecuteScript' W3C_EXECUTE_SCRIPT_ASYNC = 'w3cExecuteScriptAsync' W3C_GET_ACTIVE_ELEMENT = 'w3cGetActiveElement' W3C_GET_ALERT_TEXT = 'w3cGetAlertText' W3C_GET_CURRENT_WINDOW_HANDLE = 'w3cGetCurrentWindowHandle' W3C_GET_WINDOW_HANDLES = 'w3cGetWindowHandles' W3C_GET_WINDOW_POSITION = 'w3cGetWindowPosition' W3C_GET_WINDOW_SIZE = 'w3cGetWindowSize' W3C_MAXIMIZE_WINDOW = 'w3cMaximizeWindow' W3C_SET_ALERT_VALUE = 'w3cSetAlertValue' W3C_SET_WINDOW_POSITION = 'w3cSetWindowPosition' W3C_SET_WINDOW_SIZE = 'w3cSetWindowSize' 7.23 Remote WebDriver Error Handler class selenium.webdriver.remote.errorhandler.ErrorCode Bases: object Error codes defined in the WebDriver wire protocol. ELEMENT_CLICK_INTERCEPTED = [64, 'element click intercepted'] ELEMENT_IS_NOT_SELECTABLE = [15, 'element not selectable'] ELEMENT_NOT_INTERACTABLE = [60, 'element not interactable'] 76 Chapter 7. WebDriver API
  • 83. Selenium Python Bindings, Release 2 ELEMENT_NOT_VISIBLE = [11, 'element not visible'] IME_ENGINE_ACTIVATION_FAILED = [31, 'ime engine activation failed'] IME_NOT_AVAILABLE = [30, 'ime not available'] INSECURE_CERTIFICATE = ['insecure certificate'] INVALID_ARGUMENT = [61, 'invalid argument'] INVALID_COOKIE_DOMAIN = [24, 'invalid cookie domain'] INVALID_COORDINATES = ['invalid coordinates'] INVALID_ELEMENT_COORDINATES = [29, 'invalid element coordinates'] INVALID_ELEMENT_STATE = [12, 'invalid element state'] INVALID_SELECTOR = [32, 'invalid selector'] INVALID_SESSION_ID = ['invalid session id'] INVALID_XPATH_SELECTOR = [51, 'invalid selector'] INVALID_XPATH_SELECTOR_RETURN_TYPER = [52, 'invalid selector'] JAVASCRIPT_ERROR = [17, 'javascript error'] METHOD_NOT_ALLOWED = [405, 'unsupported operation'] MOVE_TARGET_OUT_OF_BOUNDS = [34, 'move target out of bounds'] NO_ALERT_OPEN = [27, 'no such alert'] NO_SUCH_COOKIE = [62, 'no such cookie'] NO_SUCH_ELEMENT = [7, 'no such element'] NO_SUCH_FRAME = [8, 'no such frame'] NO_SUCH_WINDOW = [23, 'no such window'] SCRIPT_TIMEOUT = [28, 'script timeout'] SESSION_NOT_CREATED = [33, 'session not created'] STALE_ELEMENT_REFERENCE = [10, 'stale element reference'] SUCCESS = 0 TIMEOUT = [21, 'timeout'] UNABLE_TO_CAPTURE_SCREEN = [63, 'unable to capture screen'] UNABLE_TO_SET_COOKIE = [25, 'unable to set cookie'] UNEXPECTED_ALERT_OPEN = [26, 'unexpected alert open'] UNKNOWN_COMMAND = [9, 'unknown command'] UNKNOWN_ERROR = [13, 'unknown error'] UNKNOWN_METHOD = ['unknown method exception'] XPATH_LOOKUP_ERROR = [19, 'invalid selector'] class selenium.webdriver.remote.errorhandler.ErrorHandler Bases: object Handles errors returned by the WebDriver server. 7.23. Remote WebDriver Error Handler 77
  • 84. Selenium Python Bindings, Release 2 check_response(response) Checks that a JSON response from the WebDriver does not have an error. Args • response - The JSON response from the WebDriver server as a dictionary object. Raises If the response contains an error message. 7.24 Remote WebDriver Mobile class selenium.webdriver.remote.mobile.Mobile(driver) Bases: object class ConnectionType(mask) Bases: object __init__(mask) x.__init__(...) initializes x; see help(type(x)) for signature airplane_mode data wifi __init__(driver) x.__init__(...) initializes x; see help(type(x)) for signature set_network_connection(network) Set the network connection for the remote device. Example of setting airplane mode: driver.mobile.set_network_connection(driver.mobile.AIRPLANE_MODE) AIRPLANE_MODE = <selenium.webdriver.remote.mobile.ConnectionType object> ALL_NETWORK = <selenium.webdriver.remote.mobile.ConnectionType object> DATA_NETWORK = <selenium.webdriver.remote.mobile.ConnectionType object> WIFI_NETWORK = <selenium.webdriver.remote.mobile.ConnectionType object> context returns the current context (Native or WebView). contexts returns a list of available contexts network_connection 7.25 Remote WebDriver Remote Connection class selenium.webdriver.remote.remote_connection.RemoteConnection(remote_server_addr, keep_alive=False, re- solve_ip=True) Bases: object 78 Chapter 7. WebDriver API
  • 85. Selenium Python Bindings, Release 2 A connection with the Remote WebDriver server. Communicates with the server using the WebDriver wire protocol: https://github.com/SeleniumHQ/selenium/ wiki/JsonWireProtocol __init__(remote_server_addr, keep_alive=False, resolve_ip=True) x.__init__(...) initializes x; see help(type(x)) for signature execute(command, params) Send a command to the remote server. Any path subtitutions required for the URL mapped to the command should be included in the command parameters. Args • command - A string specifying the command to execute. • params - A dictionary of named parameters to send with the command as its JSON pay- load. classmethod get_remote_connection_headers(parsed_url, keep_alive=False) Get headers for remote request. Args • parsed_url - The parsed url • keep_alive (Boolean) - Is this a keep-alive connection (default: False) classmethod get_timeout() Returns Timeout value in seconds for all http requests made to the Remote Connection classmethod reset_timeout() Reset the http request timeout to socket._GLOBAL_DEFAULT_TIMEOUT classmethod set_timeout(timeout) Override the default timeout Args • timeout - timeout value for http requests in seconds 7.26 Remote WebDriver Utils selenium.webdriver.remote.utils.dump_json(json_struct) selenium.webdriver.remote.utils.format_json(json_struct) selenium.webdriver.remote.utils.load_json(s) selenium.webdriver.remote.utils.unzip_to_temp_dir(zip_file_name) Unzip zipfile to a temporary directory. The directory of the unzipped files is returned if success, otherwise None is returned. 7.26. Remote WebDriver Utils 79
  • 86. Selenium Python Bindings, Release 2 7.27 Internet Explorer WebDriver class selenium.webdriver.ie.webdriver.WebDriver(executable_path=’IEDriverServer.exe’, capabilities=None, port=0, time- out=30, host=None, log_level=None, service_log_path=None, op- tions=None, ie_options=None, desired_capabilities=None, log_file=None, keep_alive=False) Bases: selenium.webdriver.remote.webdriver.WebDriver Controls the IEServerDriver and allows you to drive Internet Explorer __init__(executable_path=’IEDriverServer.exe’, capabilities=None, port=0, timeout=30, host=None, log_level=None, service_log_path=None, options=None, ie_options=None, desired_capabilities=None, log_file=None, keep_alive=False) Creates a new instance of the chrome driver. Starts the service and then creates new instance of chrome driver. Args • executable_path - path to the executable. If the default is used it assumes the executable is in the $PATH • capabilities: capabilities Dictionary object • port - port you would like the service to run, if left as 0, a free port will be found. • timeout - no longer used, kept for backward compatibility • host - IP address for the service • log_level - log level you would like the service to run. • service_log_path - target of logging of service, may be “stdout”, “stderr” or file path. • options - IE Options instance, providing additional IE options • ie_options - Deprecated argument for options • desired_capabilities - alias of capabilities; this will make the signature consistent with RemoteWebDriver. • log_file - Deprecated argument for service_log_path • keep_alive - Whether to configure RemoteConnection to use HTTP keep-alive. create_options() quit() Quits the driver and closes every associated window. Usage driver.quit() 80 Chapter 7. WebDriver API
  • 87. Selenium Python Bindings, Release 2 7.28 Android WebDriver class selenium.webdriver.android.webdriver.WebDriver(host=’localhost’, port=4444, de- sired_capabilities={’browserName’: ’android’, ’platform’: ’AN- DROID’, ’version’: ”}) Bases: selenium.webdriver.remote.webdriver.WebDriver Simple RemoteWebDriver wrapper to start connect to Selendroid’s WebView app For more info on getting started with Selendroid http://selendroid.io/mobileWeb.html __init__(host=’localhost’, port=4444, desired_capabilities={’browserName’: ’android’, ’platform’: ’ANDROID’, ’version’: ”}) Creates a new instance of Selendroid using the WebView app Args • host - location of where selendroid is running • port - port that selendroid is running on • desired_capabilities: Dictionary object with capabilities 7.29 Opera WebDriver class selenium.webdriver.opera.webdriver.OperaDriver(executable_path=None, port=0, options=None, service_args=None, de- sired_capabilities=None, service_log_path=None, opera_options=None, keep_alive=True) Bases: selenium.webdriver.chrome.webdriver.WebDriver Controls the new OperaDriver and allows you to drive the Opera browser based on Chromium. __init__(executable_path=None, port=0, options=None, service_args=None, de- sired_capabilities=None, service_log_path=None, opera_options=None, keep_alive=True) Creates a new instance of the operadriver. Starts the service and then creates new instance of operadriver. Args • executable_path - path to the executable. If the default is used it assumes the exe- cutable is in the $PATH • port - port you would like the service to run, if left as 0, a free port will be found. • options: this takes an instance of OperaOptions • service_args - List of args to pass to the driver service • desired_capabilities: Dictionary object with non-browser specific • service_log_path - Where to log information from the driver. • opera_options - Deprecated argument for options capabilities only, such as “proxy” or “loggingPref”. 7.28. Android WebDriver 81
  • 88. Selenium Python Bindings, Release 2 create_options() class selenium.webdriver.opera.webdriver.WebDriver(desired_capabilities=None, ex- ecutable_path=None, port=0, service_log_path=None, ser- vice_args=None, options=None) Bases: selenium.webdriver.opera.webdriver.OperaDriver class ServiceType CHROMIUM = 2 __init__(desired_capabilities=None, executable_path=None, port=0, service_log_path=None, ser- vice_args=None, options=None) Creates a new instance of the operadriver. Starts the service and then creates new instance of operadriver. Args • executable_path - path to the executable. If the default is used it assumes the exe- cutable is in the $PATH • port - port you would like the service to run, if left as 0, a free port will be found. • options: this takes an instance of OperaOptions • service_args - List of args to pass to the driver service • desired_capabilities: Dictionary object with non-browser specific • service_log_path - Where to log information from the driver. • opera_options - Deprecated argument for options capabilities only, such as “proxy” or “loggingPref”. 7.30 PhantomJS WebDriver class selenium.webdriver.phantomjs.webdriver.WebDriver(executable_path=’phantomjs’, port=0, de- sired_capabilities={’browserName’: ’phantomjs’, ’javascriptEn- abled’: True, ’platform’: ’ANY’, ’version’: ”}, service_args=None, ser- vice_log_path=None) Bases: selenium.webdriver.remote.webdriver.WebDriver Wrapper to communicate with PhantomJS through Ghostdriver. You will need to follow all the directions here: https://github.com/detro/ghostdriver __init__(executable_path=’phantomjs’, port=0, desired_capabilities={’browserName’: ’phantomjs’, ’javascriptEnabled’: True, ’platform’: ’ANY’, ’version’: ”}, service_args=None, ser- vice_log_path=None) Creates a new instance of the PhantomJS / Ghostdriver. Starts the service and then creates new instance of the driver. Args 82 Chapter 7. WebDriver API
  • 89. Selenium Python Bindings, Release 2 • executable_path - path to the executable. If the default is used it assumes the executable is in the $PATH • port - port you would like the service to run, if left as 0, a free port will be found. • desired_capabilities: Dictionary object with non-browser specific capabilities only, such as “proxy” or “loggingPref”. • service_args : A List of command line arguments to pass to PhantomJS • service_log_path: Path for phantomjs service to log to. quit() Closes the browser and shuts down the PhantomJS executable that is started when starting the PhantomJS 7.31 PhantomJS WebDriver Service class selenium.webdriver.phantomjs.service.Service(executable_path, port=0, service_args=None, log_path=None) Bases: selenium.webdriver.common.service.Service Object that manages the starting and stopping of PhantomJS / Ghostdriver __init__(executable_path, port=0, service_args=None, log_path=None) Creates a new instance of the Service Args • executable_path : Path to PhantomJS binary • port : Port the service is running on • service_args : A List of other command line options to pass to PhantomJS • log_path: Path for PhantomJS service to log to command_line_args() send_remote_shutdown_command() service_url Gets the url of the GhostDriver Service 7.32 Safari WebDriver class selenium.webdriver.safari.webdriver.WebDriver(port=0, exe- cutable_path=’/usr/bin/safaridriver’, reuse_service=False, de- sired_capabilities={’browserName’: ’safari’, ’platform’: ’MAC’, ’version’: ”}, quiet=False, keep_alive=True, ser- vice_args=None) Bases: selenium.webdriver.remote.webdriver.WebDriver Controls the SafariDriver and allows you to drive the browser. 7.31. PhantomJS WebDriver Service 83
  • 90. Selenium Python Bindings, Release 2 __init__(port=0, executable_path=’/usr/bin/safaridriver’, reuse_service=False, de- sired_capabilities={’browserName’: ’safari’, ’platform’: ’MAC’, ’version’: ”}, quiet=False, keep_alive=True, service_args=None) Creates a new Safari driver instance and launches or finds a running safaridriver service. Args • port - The port on which the safaridriver service should listen for new connections. If zero, a free port will be found. • executable_path - Path to a custom safaridriver executable to be used. If absent, /usr/bin/safaridriver is used. • reuse_service - If True, do not spawn a safaridriver instance; instead, connect to an already- running service that was launched externally. • desired_capabilities: Dictionary object with desired capabilities (Can be used to provide various Safari switches). • quiet - If True, the driver’s stdout and stderr is suppressed. • keep_alive - Whether to configure SafariRemoteConnection to use HTTP keep-alive. Defaults to False. • service_args : List of args to pass to the safaridriver service debug() get_permission(permission) quit() Closes the browser and shuts down the SafariDriver executable that is started when starting the SafariDriver set_permission(permission, value) 7.33 Safari WebDriver Service class selenium.webdriver.safari.service.Service(executable_path, port=0, quiet=False, service_args=None) Bases: selenium.webdriver.common.service.Service Object that manages the starting and stopping of the SafariDriver __init__(executable_path, port=0, quiet=False, service_args=None) Creates a new instance of the Service Args • executable_path : Path to the SafariDriver • port : Port the service is running on • quiet : Suppress driver stdout and stderr • service_args : List of args to pass to the safaridriver service command_line_args() service_url Gets the url of the SafariDriver Service 84 Chapter 7. WebDriver API
  • 91. Selenium Python Bindings, Release 2 7.34 Select Support class selenium.webdriver.support.select.Select(webelement) Bases: object __init__(webelement) Constructor. A check is made that the given element is, indeed, a SELECT tag. If it is not, then an UnexpectedTagNameException is thrown. Args • webelement - element SELECT element to wrap Example: from selenium.webdriver.support.ui import Select Select(driver.find_element_by_tag_name(“select”)).select_by_index(2) deselect_all() Clear all selected entries. This is only valid when the SELECT supports multiple selections. throws NotImplementedError If the SELECT does not support multiple selections deselect_by_index(index) Deselect the option at the given index. This is done by examing the “index” attribute of an element, and not merely by counting. Args • index - The option at this index will be deselected throws NoSuchElementException If there is no option with specisied index in SELECT deselect_by_value(value) Deselect all options that have a value matching the argument. That is, when given “foo” this would deselect an option like: <option value=”foo”>Bar</option> Args • value - The value to match against throws NoSuchElementException If there is no option with specisied value in SELECT deselect_by_visible_text(text) Deselect all options that display text matching the argument. That is, when given “Bar” this would deselect an option like: <option value=”foo”>Bar</option> Args • text - The visible text to match against select_by_index(index) Select the option at the given index. This is done by examing the “index” attribute of an element, and not merely by counting. Args • index - The option at this index will be selected throws NoSuchElementException If there is no option with specisied index in SELECT 7.34. Select Support 85
  • 92. Selenium Python Bindings, Release 2 select_by_value(value) Select all options that have a value matching the argument. That is, when given “foo” this would select an option like: <option value=”foo”>Bar</option> Args • value - The value to match against throws NoSuchElementException If there is no option with specisied value in SELECT select_by_visible_text(text) Select all options that display text matching the argument. That is, when given “Bar” this would select an option like: <option value=”foo”>Bar</option> Args • text - The visible text to match against throws NoSuchElementException If there is no option with specisied text in SELECT all_selected_options Returns a list of all selected options belonging to this select tag first_selected_option The first selected option in this select tag (or the currently selected option in a normal select) options Returns a list of all options belonging to this select tag 7.35 Wait Support class selenium.webdriver.support.wait.WebDriverWait(driver, timeout, poll_frequency=0.5, ig- nored_exceptions=None) Bases: object __init__(driver, timeout, poll_frequency=0.5, ignored_exceptions=None) Constructor, takes a WebDriver instance and timeout in seconds. Args • driver - Instance of WebDriver (Ie, Firefox, Chrome or Remote) • timeout - Number of seconds before timing out • poll_frequency - sleep interval between calls By default, it is 0.5 second. • ignored_exceptions - iterable structure of exception classes ignored during calls. By de- fault, it contains NoSuchElementException only. Example: from selenium.webdriver.support.ui import WebDriverWait element = WebDriverWait(driver, 10).until(lambda x: x.find_element_by_id(“someId”)) is_disappeared = WebDriverWait(driver, 30, 1, (ElementNotVisibleException)). until_not(lambda x: x.find_element_by_id(“someId”).is_displayed()) 86 Chapter 7. WebDriver API
  • 93. Selenium Python Bindings, Release 2 until(method, message=”) Calls the method provided with the driver as an argument until the return value is not False. until_not(method, message=”) Calls the method provided with the driver as an argument until the return value is False. 7.36 Color Support class selenium.webdriver.support.color.Color(red, green, blue, alpha=1) Bases: object Color conversion support class Example: from selenium.webdriver.support.color import Color print(Color.from_string('#00ff33').rgba) print(Color.from_string('rgb(1, 255, 3)').hex) print(Color.from_string('blue').rgba) __init__(red, green, blue, alpha=1) x.__init__(...) initializes x; see help(type(x)) for signature static from_string(str_) hex rgb rgba 7.37 Event Firing WebDriver Support class selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver(driver, event_listener) Bases: object A wrapper around an arbitrary WebDriver instance which supports firing events __init__(driver, event_listener) Creates a new instance of the EventFiringWebDriver Args • driver : A WebDriver instance • event_listener : Instance of a class that subclasses AbstractEventListener and implements it fully or partially Example: from selenium.webdriver import Firefox from selenium.webdriver.support.events import EventFiringWebDriver, ˓→AbstractEventListener class MyListener(AbstractEventListener): def before_navigate_to(self, url, driver): (continues on next page) 7.36. Color Support 87
  • 94. Selenium Python Bindings, Release 2 (continued from previous page) print("Before navigate to %s" % url) def after_navigate_to(self, url, driver): print("After navigate to %s" % url) driver = Firefox() ef_driver = EventFiringWebDriver(driver, MyListener()) ef_driver.get("http://www.google.co.in/") back() close() execute_async_script(script, *args) execute_script(script, *args) find_element(by=’id’, value=None) find_element_by_class_name(name) find_element_by_css_selector(css_selector) find_element_by_id(id_) find_element_by_link_text(link_text) find_element_by_name(name) find_element_by_partial_link_text(link_text) find_element_by_tag_name(name) find_element_by_xpath(xpath) find_elements(by=’id’, value=None) find_elements_by_class_name(name) find_elements_by_css_selector(css_selector) find_elements_by_id(id_) find_elements_by_link_text(text) find_elements_by_name(name) find_elements_by_partial_link_text(link_text) find_elements_by_tag_name(name) find_elements_by_xpath(xpath) forward() get(url) quit() wrapped_driver Returns the WebDriver instance wrapped by this EventsFiringWebDriver class selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement(webelement, ef_driver) Bases: object ” A wrapper around WebElement instance which supports firing events 88 Chapter 7. WebDriver API
  • 95. Selenium Python Bindings, Release 2 __init__(webelement, ef_driver) Creates a new instance of the EventFiringWebElement clear() click() find_element(by=’id’, value=None) find_element_by_class_name(name) find_element_by_css_selector(css_selector) find_element_by_id(id_) find_element_by_link_text(link_text) find_element_by_name(name) find_element_by_partial_link_text(link_text) find_element_by_tag_name(name) find_element_by_xpath(xpath) find_elements(by=’id’, value=None) find_elements_by_class_name(name) find_elements_by_css_selector(css_selector) find_elements_by_id(id_) find_elements_by_link_text(link_text) find_elements_by_name(name) find_elements_by_partial_link_text(link_text) find_elements_by_tag_name(name) find_elements_by_xpath(xpath) send_keys(*value) wrapped_element Returns the WebElement wrapped by this EventFiringWebElement instance 7.38 Abstract Event Listener Support class selenium.webdriver.support.abstract_event_listener.AbstractEventListener Bases: object Event listener must subclass and implement this fully or partially after_change_value_of(element, driver) after_click(element, driver) after_close(driver) after_execute_script(script, driver) after_find(by, value, driver) after_navigate_back(driver) 7.38. Abstract Event Listener Support 89
  • 96. Selenium Python Bindings, Release 2 after_navigate_forward(driver) after_navigate_to(url, driver) after_quit(driver) before_change_value_of(element, driver) before_click(element, driver) before_close(driver) before_execute_script(script, driver) before_find(by, value, driver) before_navigate_back(driver) before_navigate_forward(driver) before_navigate_to(url, driver) before_quit(driver) on_exception(exception, driver) 7.39 Expected conditions Support class selenium.webdriver.support.expected_conditions.alert_is_present Bases: object Expect an alert to be present. __init__() x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.element_located_selection_state_to_be( Bases: object An expectation to locate an element and check if the selection state specified is in that state. locator is a tuple of (by, path) is_selected is a boolean __init__(locator, is_selected) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.element_located_to_be_selected(locator) Bases: object An expectation for the element to be located is selected. locator is a tuple of (by, path) __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.element_selection_state_to_be(element, is_selected Bases: object An expectation for checking if the given element is selected. element is WebElement object is_selected is a Boolean.” __init__(element, is_selected) x.__init__(...) initializes x; see help(type(x)) for signature 90 Chapter 7. WebDriver API
  • 97. Selenium Python Bindings, Release 2 class selenium.webdriver.support.expected_conditions.element_to_be_clickable(locator) Bases: object An Expectation for checking an element is visible and enabled such that you can click it. __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.element_to_be_selected(element) Bases: object An expectation for checking the selection is selected. element is WebElement object __init__(element) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.frame_to_be_available_and_switch_to_it Bases: object An expectation for checking whether the given frame is available to switch to. If the frame is available it switches the given driver to the specified frame. __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.invisibility_of_element(locator) Bases: selenium.webdriver.support.expected_conditions. invisibility_of_element_located An Expectation for checking that an element is either invisible or not present on the DOM. element is either a locator (text) or an WebElement class selenium.webdriver.support.expected_conditions.invisibility_of_element_located(locator) Bases: object An Expectation for checking that an element is either invisible or not present on the DOM. locator used to find the element __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.new_window_is_opened(current_handles) Bases: object An expectation that a new window will be opened and have the number of windows handles increase __init__(current_handles) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.number_of_windows_to_be(num_windows) Bases: object An expectation for the number of windows to be a certain value. __init__(num_windows) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.presence_of_all_elements_located(locator Bases: object An expectation for checking that there is at least one element present on a web page. locator is used to find the element returns the list of WebElements once they are located 7.39. Expected conditions Support 91
  • 98. Selenium Python Bindings, Release 2 __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.presence_of_element_located(locator) Bases: object An expectation for checking that an element is present on the DOM of a page. This does not necessarily mean that the element is visible. locator - used to find the element returns the WebElement once it is located __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.staleness_of(element) Bases: object Wait until an element is no longer attached to the DOM. element is the element to wait for. returns False if the element is still attached to the DOM, true otherwise. __init__(element) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.text_to_be_present_in_element(locator, text_) Bases: object An expectation for checking if the given text is present in the specified element. locator, text __init__(locator, text_) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.text_to_be_present_in_element_value(loc tex Bases: object An expectation for checking if the given text is present in the element’s locator, text __init__(locator, text_) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.title_contains(title) Bases: object An expectation for checking that the title contains a case-sensitive substring. title is the fragment of title expected returns True when the title matches, False otherwise __init__(title) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.title_is(title) Bases: object An expectation for checking the title of a page. title is the expected title, which must be an exact match returns True if the title matches, false otherwise. __init__(title) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.url_changes(url) Bases: object An expectation for checking the current url. url is the expected url, which must not be an exact match returns True if the url is different, false otherwise. __init__(url) x.__init__(...) initializes x; see help(type(x)) for signature 92 Chapter 7. WebDriver API
  • 99. Selenium Python Bindings, Release 2 class selenium.webdriver.support.expected_conditions.url_contains(url) Bases: object An expectation for checking that the current url contains a case-sensitive substring. url is the fragment of url expected, returns True when the url matches, False otherwise __init__(url) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.url_matches(pattern) Bases: object An expectation for checking the current url. pattern is the expected pattern, which must be an exact match returns True if the url matches, false otherwise. __init__(pattern) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.url_to_be(url) Bases: object An expectation for checking the current url. url is the expected url, which must be an exact match returns True if the url matches, false otherwise. __init__(url) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.visibility_of(element) Bases: object An expectation for checking that an element, known to be present on the DOM of a page, is visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0. element is the WebElement returns the (same) WebElement once it is visible __init__(element) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.visibility_of_all_elements_located(loca Bases: object An expectation for checking that all elements are present on the DOM of a page and visible. Visibility means that the elements are not only displayed but also has a height and width that is greater than 0. locator - used to find the elements returns the list of WebElements once they are located and visible __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.visibility_of_any_elements_located(loca Bases: object An expectation for checking that there is at least one element visible on a web page. locator is used to find the element returns the list of WebElements once they are located __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature class selenium.webdriver.support.expected_conditions.visibility_of_element_located(locator) Bases: object An expectation for checking that an element is present on the DOM of a page and visible. Visibility means that the element is not only displayed but also has a height and width that is greater than 0. locator - used to find the element returns the WebElement once it is located and visible 7.39. Expected conditions Support 93
  • 100. Selenium Python Bindings, Release 2 __init__(locator) x.__init__(...) initializes x; see help(type(x)) for signature 94 Chapter 7. WebDriver API
  • 101. CHAPTER 8 Appendix: Frequently Asked Questions Another FAQ: https://github.com/SeleniumHQ/selenium/wiki/Frequently-Asked-Questions 8.1 How to use ChromeDriver ? Download the latest chromedriver from download page. Unzip the file: unzip chromedriver_linux32_x.x.x.x.zip You should see a chromedriver executable. Now you can create an instance of Chrome WebDriver like this: driver = webdriver.Chrome(executable_path="/path/to/chromedriver") The rest of the example should work as given in other documentation. 8.2 Does Selenium 2 support XPath 2.0 ? Ref: http://seleniumhq.org/docs/03_webdriver.html#how-xpath-works-in-webdriver Selenium delegates XPath queries down to the browser’s own XPath engine, so Selenium support XPath supports whatever the browser supports. In browsers which don’t have native XPath engines (IE 6,7,8), Selenium supports XPath 1.0 only. 8.3 How to scroll down to the bottom of a page ? Ref: http://blog.varunin.com/2011/08/scrolling-on-pages-using-selenium.html You can use the execute_script method to execute javascript on the loaded page. So, you can call the JavaScript API to scroll to the bottom or any other position of a page. 95
  • 102. Selenium Python Bindings, Release 2 Here is an example to scroll to the bottom of a page: driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") The window object in DOM has a scrollTo method to scroll to any position of an opened window. The scrollHeight is a common property for all elements. The document.body.scrollHeight will give the height of the entire body of the page. 8.4 How to auto save files using custom Firefox profile ? Ref: http://stackoverflow.com/questions/1176348/access-to-file-download-dialog-in-firefox Ref: http://blog.codecentric.de/en/2010/07/file-downloads-with-selenium-mission-impossible/ The first step is to identify the type of file you want to auto save. To identify the content type you want to download automatically, you can use curl: curl -I URL | grep "Content-Type" Another way to find content type is using the requests module, you can use it like this: import requests content_type = requests.head('http://www.python.org').headers['content-type'] print(content_type) Once the content type is identified, you can use it to set the firefox profile preference: browser.helperApps. neverAsk.saveToDisk Here is an example: import os from selenium import webdriver fp = webdriver.FirefoxProfile() fp.set_preference("browser.download.folderList",2) fp.set_preference("browser.download.manager.showWhenStarting",False) fp.set_preference("browser.download.dir", os.getcwd()) fp.set_preference("browser.helperApps.neverAsk.saveToDisk", "application/octet-stream ˓→") browser = webdriver.Firefox(firefox_profile=fp) browser.get("http://pypi.python.org/pypi/selenium") browser.find_element_by_partial_link_text("selenium-2").click() In the above example, application/octet-stream is used as the content type. The browser.download.dir option specify the directory where you want to download the files. 8.5 How to upload files into file inputs ? Select the <input type="file"> element and call the send_keys() method passing the file path, either the path relative to the test script, or an absolute path. Keep in mind the differences in path names between Windows and Unix systems. 96 Chapter 8. Appendix: Frequently Asked Questions
  • 103. Selenium Python Bindings, Release 2 8.6 How to use firebug with Firefox ? First download the Firebug XPI file, later you call the add_extension method available for the firefox profile: from selenium import webdriver fp = webdriver.FirefoxProfile() fp.add_extension(extension='firebug-1.8.4.xpi') fp.set_preference("extensions.firebug.currentVersion", "1.8.4") #Avoid startup screen browser = webdriver.Firefox(firefox_profile=fp) 8.7 How to take screenshot of the current window ? Use the save_screenshot method provided by the webdriver: from selenium import webdriver driver = webdriver.Firefox() driver.get('http://www.python.org/') driver.save_screenshot('screenshot.png') driver.quit() 8.6. How to use firebug with Firefox ? 97
  • 104. Selenium Python Bindings, Release 2 98 Chapter 8. Appendix: Frequently Asked Questions
  • 105. CHAPTER 9 Indices and tables • genindex • modindex • search 99
  • 106. Selenium Python Bindings, Release 2 100 Chapter 9. Indices and tables
  • 107. Python Module Index s selenium.common.exceptions, 32 selenium.webdriver.android.webdriver, 81 selenium.webdriver.chrome.options, 55 selenium.webdriver.chrome.service, 56 selenium.webdriver.chrome.webdriver, 54 selenium.webdriver.common.action_chains, 37 selenium.webdriver.common.alert, 40 selenium.webdriver.common.by, 43 selenium.webdriver.common.desired_capabilities, 43 selenium.webdriver.common.html5.application_cache, 48 selenium.webdriver.common.keys, 41 selenium.webdriver.common.proxy, 46 selenium.webdriver.common.service, 48 selenium.webdriver.common.touch_actions, 44 selenium.webdriver.common.utils, 47 selenium.webdriver.firefox.extension_connection, 53 selenium.webdriver.firefox.firefox_binary, 52 selenium.webdriver.firefox.firefox_profile, 52 selenium.webdriver.firefox.options, 51 selenium.webdriver.firefox.webdriver, 49 selenium.webdriver.ie.webdriver, 80 selenium.webdriver.opera.webdriver, 81 selenium.webdriver.phantomjs.service, 83 selenium.webdriver.phantomjs.webdriver, 82 selenium.webdriver.remote.command, 73 selenium.webdriver.remote.errorhandler, 76 selenium.webdriver.remote.mobile, 78 selenium.webdriver.remote.remote_connection, 78 selenium.webdriver.remote.utils, 79 selenium.webdriver.remote.webdriver, 56 selenium.webdriver.remote.webelement, 66 selenium.webdriver.safari.service, 84 selenium.webdriver.safari.webdriver, 83 selenium.webdriver.support.abstract_event_listener, 89 selenium.webdriver.support.color, 87 selenium.webdriver.support.event_firing_webdriver, 87 selenium.webdriver.support.expected_conditions, 90 selenium.webdriver.support.select, 85 selenium.webdriver.support.wait, 86 101
  • 108. Selenium Python Bindings, Release 2 102 Python Module Index
  • 109. Index Symbols __init__() (selenium.common.exceptions.ErrorInResponseException method), 33 __init__() (selenium.common.exceptions.UnexpectedAlertPresentException method), 36 __init__() (selenium.common.exceptions.WebDriverException method), 37 __init__() (selenium.webdriver.android.webdriver.WebDriver method), 81 __init__() (selenium.webdriver.chrome.options.Options method), 55 __init__() (selenium.webdriver.chrome.service.Service method), 56 __init__() (selenium.webdriver.chrome.webdriver.WebDriver method), 54 __init__() (selenium.webdriver.common.action_chains.ActionChains method), 37 __init__() (selenium.webdriver.common.alert.Alert method), 40 __init__() (selenium.webdriver.common.html5.application_cache.ApplicationCache method), 48 __init__() (selenium.webdriver.common.proxy.Proxy method), 46 __init__() (selenium.webdriver.common.service.Service method), 48 __init__() (selenium.webdriver.common.touch_actions.TouchActions method), 44 __init__() (selenium.webdriver.firefox.extension_connection.ExtensionConnection method), 53 __init__() (selenium.webdriver.firefox.firefox_binary.FirefoxBinary method), 52 __init__() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile method), 52 __init__() (selenium.webdriver.firefox.options.Log method), 51 __init__() (selenium.webdriver.firefox.options.Options method), 51 __init__() (selenium.webdriver.firefox.webdriver.WebDriver method), 49 __init__() (selenium.webdriver.ie.webdriver.WebDriver method), 80 __init__() (selenium.webdriver.opera.webdriver.OperaDriver method), 81 __init__() (selenium.webdriver.opera.webdriver.WebDriver method), 82 __init__() (selenium.webdriver.phantomjs.service.Service method), 83 __init__() (selenium.webdriver.phantomjs.webdriver.WebDriver method), 82 __init__() (selenium.webdriver.remote.mobile.Mobile method), 78 __init__() (selenium.webdriver.remote.mobile.Mobile.ConnectionType method), 78 __init__() (selenium.webdriver.remote.remote_connection.RemoteConnecti method), 79 __init__() (selenium.webdriver.remote.webdriver.WebDriver method), 57 __init__() (selenium.webdriver.remote.webelement.WebElement method), 66 __init__() (selenium.webdriver.safari.service.Service method), 84 __init__() (selenium.webdriver.safari.webdriver.WebDriver method), 83 __init__() (selenium.webdriver.support.color.Color method), 87 __init__() (selenium.webdriver.support.event_firing_webdriver.EventFiringW method), 87 __init__() (selenium.webdriver.support.event_firing_webdriver.EventFiringW method), 88 __init__() (selenium.webdriver.support.expected_conditions.alert_is_presen method), 90 __init__() (selenium.webdriver.support.expected_conditions.element_locate method), 90 __init__() (selenium.webdriver.support.expected_conditions.element_locate method), 90 __init__() (selenium.webdriver.support.expected_conditions.element_select method), 90 __init__() (selenium.webdriver.support.expected_conditions.element_to_be_ method), 91 103
  • 110. Selenium Python Bindings, Release 2 __init__() (selenium.webdriver.support.expected_conditions.element_to_be_selected method), 91 __init__() (selenium.webdriver.support.expected_conditions.frame_to_be_available_and_switch_to_it method), 91 __init__() (selenium.webdriver.support.expected_conditions.invisibility_of_element_located method), 91 __init__() (selenium.webdriver.support.expected_conditions.new_window_is_opened method), 91 __init__() (selenium.webdriver.support.expected_conditions.number_of_windows_to_be method), 91 __init__() (selenium.webdriver.support.expected_conditions.presence_of_all_elements_located method), 91 __init__() (selenium.webdriver.support.expected_conditions.presence_of_element_located method), 92 __init__() (selenium.webdriver.support.expected_conditions.staleness_of method), 92 __init__() (selenium.webdriver.support.expected_conditions.text_to_be_present_in_element method), 92 __init__() (selenium.webdriver.support.expected_conditions.text_to_be_present_in_element_value method), 92 __init__() (selenium.webdriver.support.expected_conditions.title_contains method), 92 __init__() (selenium.webdriver.support.expected_conditions.title_is method), 92 __init__() (selenium.webdriver.support.expected_conditions.url_changes method), 92 __init__() (selenium.webdriver.support.expected_conditions.url_contains method), 93 __init__() (selenium.webdriver.support.expected_conditions.url_matches method), 93 __init__() (selenium.webdriver.support.expected_conditions.url_to_be method), 93 __init__() (selenium.webdriver.support.expected_conditions.visibility_of method), 93 __init__() (selenium.webdriver.support.expected_conditions.visibility_of_all_elements_located method), 93 __init__() (selenium.webdriver.support.expected_conditions.visibility_of_any_elements_located method), 93 __init__() (selenium.webdriver.support.expected_conditions.visibility_of_element_located method), 93 __init__() (selenium.webdriver.support.select.Select method), 85 __init__() (selenium.webdriver.support.wait.WebDriverWait method), 86 A AbstractEventListener (class in sele- nium.webdriver.support.abstract_event_listener), 89 accept() (selenium.webdriver.common.alert.Alert method), 40 ACCEPT_ALERT (sele- nium.webdriver.remote.command.Command attribute), 73 accept_insecure_certs (sele- nium.webdriver.firefox.options.Options at- tribute), 51 accept_untrusted_certs (sele- nium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 ActionChains (class in sele- nium.webdriver.common.action_chains), 37 ADD (selenium.webdriver.common.keys.Keys attribute), 41 add_argument() (selenium.webdriver.chrome.options.Options method), 55 add_argument() (selenium.webdriver.firefox.options.Options method), 51 add_command_line_options() (sele- nium.webdriver.firefox.firefox_binary.FirefoxBinary method), 53 ADD_COOKIE (selenium.webdriver.remote.command.Command attribute), 73 add_cookie() (selenium.webdriver.remote.webdriver.WebDriver method), 57 add_encoded_extension() (sele- nium.webdriver.chrome.options.Options method), 55 add_experimental_option() (sele- nium.webdriver.chrome.options.Options method), 55 add_extension() (selenium.webdriver.chrome.options.Options method), 55 add_extension() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile method), 52 add_to_capabilities() (sele- nium.webdriver.common.proxy.Proxy method), 46 AddonFormatError, 52 after_change_value_of() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 89 after_click() (selenium.webdriver.support.abstract_event_listener.AbstractEv method), 89 after_close() (selenium.webdriver.support.abstract_event_listener.AbstractE method), 89 after_execute_script() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 89 after_find() (selenium.webdriver.support.abstract_event_listener.AbstractEv method), 89 after_navigate_back() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 89 after_navigate_forward() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 89 104 Index
  • 111. Selenium Python Bindings, Release 2 after_navigate_to() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventListener method), 90 after_quit() (selenium.webdriver.support.abstract_event_listener.AbstractEventListener method), 90 AIRPLANE_MODE (sele- nium.webdriver.remote.mobile.Mobile at- tribute), 78 airplane_mode (selenium.webdriver.remote.mobile.Mobile.ConnectionType attribute), 78 Alert (class in selenium.webdriver.common.alert), 40 alert_is_present (class in sele- nium.webdriver.support.expected_conditions), 90 ALL_NETWORK (sele- nium.webdriver.remote.mobile.Mobile at- tribute), 78 all_selected_options (sele- nium.webdriver.support.select.Select attribute), 86 ALT (selenium.webdriver.common.keys.Keys attribute), 41 ANDROID (selenium.webdriver.common.desired_capabilities.DesiredCapabilities attribute), 43 ANONYMOUS_PROFILE_NAME (sele- nium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 application_cache (sele- nium.webdriver.remote.webdriver.WebDriver attribute), 65 ApplicationCache (class in sele- nium.webdriver.common.html5.application_cache), 48 arguments (selenium.webdriver.chrome.options.Options attribute), 56 arguments (selenium.webdriver.firefox.options.Options attribute), 51 ARROW_DOWN (sele- nium.webdriver.common.keys.Keys attribute), 41 ARROW_LEFT (selenium.webdriver.common.keys.Keys attribute), 41 ARROW_RIGHT (sele- nium.webdriver.common.keys.Keys attribute), 41 ARROW_UP (selenium.webdriver.common.keys.Keys attribute), 41 assert_process_still_running() (sele- nium.webdriver.common.service.Service method), 48 assume_untrusted_cert_issuer (sele- nium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 auto_detect (selenium.webdriver.common.proxy.Proxy attribute), 46 autodetect (selenium.webdriver.common.proxy.Proxy at- tribute), 46 AUTODETECT (selenium.webdriver.common.proxy.ProxyType attribute), 47 B back() (selenium.webdriver.remote.webdriver.WebDriver method), 57 back() (selenium.webdriver.support.event_firing_webdriver.EventFiringWeb method), 88 BACK_SPACE (selenium.webdriver.common.keys.Keys attribute), 41 BACKSPACE (selenium.webdriver.common.keys.Keys attribute), 41 before_change_value_of() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 90 before_click() (selenium.webdriver.support.abstract_event_listener.Abstract method), 90 before_close() (selenium.webdriver.support.abstract_event_listener.Abstract method), 90 before_execute_script() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 90 before_find() (selenium.webdriver.support.abstract_event_listener.AbstractE method), 90 before_navigate_back() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 90 before_navigate_forward() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 90 before_navigate_to() (sele- nium.webdriver.support.abstract_event_listener.AbstractEventList method), 90 before_quit() (selenium.webdriver.support.abstract_event_listener.AbstractE method), 90 binary (selenium.webdriver.firefox.options.Options at- tribute), 51 binary_location (selenium.webdriver.chrome.options.Options attribute), 56 binary_location (selenium.webdriver.firefox.options.Options attribute), 51 By (class in selenium.webdriver.common.by), 43 C CANCEL (selenium.webdriver.common.keys.Keys at- tribute), 41 capabilities (selenium.webdriver.chrome.options.Options attribute), 56 capabilities (selenium.webdriver.firefox.options.Options attribute), 51 Index 105
  • 112. Selenium Python Bindings, Release 2 check_response() (sele- nium.webdriver.remote.errorhandler.ErrorHandler method), 77 CHECKING (selenium.webdriver.common.html5.application_cache.ApplicationCache attribute), 49 CHROME (selenium.webdriver.common.desired_capabilities.DesiredCapabilities attribute), 43 CHROMIUM (selenium.webdriver.opera.webdriver.WebDriver.ServiceType attribute), 82 CLASS_NAME (selenium.webdriver.common.by.By at- tribute), 43 CLEAR (selenium.webdriver.common.keys.Keys at- tribute), 41 clear() (selenium.webdriver.remote.webelement.WebElement method), 66 clear() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 CLEAR_APP_CACHE (sele- nium.webdriver.remote.command.Command attribute), 73 CLEAR_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 73 CLEAR_LOCAL_STORAGE (sele- nium.webdriver.remote.command.Command attribute), 73 CLEAR_SESSION_STORAGE (sele- nium.webdriver.remote.command.Command attribute), 73 CLICK (selenium.webdriver.remote.command.Command attribute), 73 click() (selenium.webdriver.common.action_chains.ActionChains method), 38 click() (selenium.webdriver.remote.webelement.WebElement method), 67 click() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 click_and_hold() (sele- nium.webdriver.common.action_chains.ActionChains method), 38 CLICK_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 73 CLOSE (selenium.webdriver.remote.command.Command attribute), 73 close() (selenium.webdriver.remote.webdriver.WebDriver method), 58 close() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 Color (class in selenium.webdriver.support.color), 87 Command (class in sele- nium.webdriver.remote.command), 73 COMMAND (selenium.webdriver.common.keys.Keys attribute), 41 command_line_args() (sele- nium.webdriver.chrome.service.Service method), 56 command_line_args() (sele- nium.webdriver.common.service.Service method), 48 command_line_args() (sele- nium.webdriver.phantomjs.service.Service method), 83 command_line_args() (sele- nium.webdriver.safari.service.Service method), 84 connect() (selenium.webdriver.firefox.extension_connection.ExtensionConn method), 53 connect_and_quit() (sele- nium.webdriver.firefox.extension_connection.ExtensionConnectio class method), 53 context (selenium.webdriver.remote.mobile.Mobile at- tribute), 78 context() (selenium.webdriver.firefox.webdriver.WebDriver method), 50 CONTEXT_CHROME (sele- nium.webdriver.firefox.webdriver.WebDriver attribute), 50 context_click() (selenium.webdriver.common.action_chains.ActionChains method), 38 CONTEXT_CONTENT (sele- nium.webdriver.firefox.webdriver.WebDriver attribute), 51 CONTEXT_HANDLES (sele- nium.webdriver.remote.command.Command attribute), 73 contexts (selenium.webdriver.remote.mobile.Mobile at- tribute), 78 CONTROL (selenium.webdriver.common.keys.Keys at- tribute), 41 create_options() (selenium.webdriver.chrome.webdriver.WebDriver method), 54 create_options() (selenium.webdriver.ie.webdriver.WebDriver method), 80 create_options() (selenium.webdriver.opera.webdriver.OperaDriver method), 81 create_web_element() (sele- nium.webdriver.remote.webdriver.WebDriver method), 58 CSS_SELECTOR (selenium.webdriver.common.by.By attribute), 43 CURRENT_CONTEXT_HANDLE (sele- nium.webdriver.remote.command.Command attribute), 73 current_url (selenium.webdriver.remote.webdriver.WebDriver attribute), 65 current_window_handle (sele- nium.webdriver.remote.webdriver.WebDriver 106 Index
  • 113. Selenium Python Bindings, Release 2 attribute), 65 D data (selenium.webdriver.remote.mobile.Mobile.ConnectionType attribute), 78 DATA_NETWORK (sele- nium.webdriver.remote.mobile.Mobile at- tribute), 78 debug() (selenium.webdriver.safari.webdriver.WebDriver method), 84 debugger_address (sele- nium.webdriver.chrome.options.Options attribute), 56 DECIMAL (selenium.webdriver.common.keys.Keys at- tribute), 41 DEFAULT_PREFERENCES (sele- nium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 DELETE (selenium.webdriver.common.keys.Keys attribute), 41 DELETE_ALL_COOKIES (sele- nium.webdriver.remote.command.Command attribute), 73 delete_all_cookies() (sele- nium.webdriver.remote.webdriver.WebDriver method), 58 DELETE_COOKIE (sele- nium.webdriver.remote.command.Command attribute), 73 delete_cookie() (selenium.webdriver.remote.webdriver.WebDriver method), 58 DELETE_SESSION (sele- nium.webdriver.remote.command.Command attribute), 73 deselect_all() (selenium.webdriver.support.select.Select method), 85 deselect_by_index() (sele- nium.webdriver.support.select.Select method), 85 deselect_by_value() (sele- nium.webdriver.support.select.Select method), 85 deselect_by_visible_text() (sele- nium.webdriver.support.select.Select method), 85 desired_capabilities (sele- nium.webdriver.remote.webdriver.WebDriver attribute), 65 DesiredCapabilities (class in sele- nium.webdriver.common.desired_capabilities), 43 DIRECT (selenium.webdriver.common.proxy.ProxyType attribute), 47 dismiss() (selenium.webdriver.common.alert.Alert method), 40 DISMISS_ALERT (sele- nium.webdriver.remote.command.Command attribute), 73 DIVIDE (selenium.webdriver.common.keys.Keys at- tribute), 41 DOUBLE_CLICK (sele- nium.webdriver.remote.command.Command attribute), 73 double_click() (selenium.webdriver.common.action_chains.ActionChains method), 38 DOUBLE_TAP (selenium.webdriver.remote.command.Command attribute), 73 double_tap() (selenium.webdriver.common.touch_actions.TouchActions method), 44 DOWN (selenium.webdriver.common.keys.Keys at- tribute), 41 DOWNLOADING (sele- nium.webdriver.common.html5.application_cache.ApplicationCac attribute), 49 drag_and_drop() (selenium.webdriver.common.action_chains.ActionChains method), 38 drag_and_drop_by_offset() (sele- nium.webdriver.common.action_chains.ActionChains method), 38 dump_json() (in module sele- nium.webdriver.remote.utils), 79 E EDGE (selenium.webdriver.common.desired_capabilities.DesiredCapabiliti attribute), 43 ELEMENT_CLICK_INTERCEPTED (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 76 ELEMENT_IS_NOT_SELECTABLE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 76 element_located_selection_state_to_be (class in sele- nium.webdriver.support.expected_conditions), 90 element_located_to_be_selected (class in sele- nium.webdriver.support.expected_conditions), 90 ELEMENT_NOT_INTERACTABLE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 76 ELEMENT_NOT_VISIBLE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 76 ELEMENT_SCREENSHOT (sele- nium.webdriver.remote.command.Command attribute), 73 Index 107
  • 114. Selenium Python Bindings, Release 2 element_selection_state_to_be (class in sele- nium.webdriver.support.expected_conditions), 90 element_to_be_clickable (class in sele- nium.webdriver.support.expected_conditions), 90 element_to_be_selected (class in sele- nium.webdriver.support.expected_conditions), 91 ElementClickInterceptedException, 32 ElementNotInteractableException, 32 ElementNotSelectableException, 32 ElementNotVisibleException, 32 encoded (selenium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 END (selenium.webdriver.common.keys.Keys attribute), 41 ENTER (selenium.webdriver.common.keys.Keys at- tribute), 41 EQUALS (selenium.webdriver.common.keys.Keys attribute), 41 ErrorCode (class in sele- nium.webdriver.remote.errorhandler), 76 ErrorHandler (class in sele- nium.webdriver.remote.errorhandler), 77 ErrorInResponseException, 33 ESCAPE (selenium.webdriver.common.keys.Keys attribute), 41 EventFiringWebDriver (class in sele- nium.webdriver.support.event_firing_webdriver), 87 EventFiringWebElement (class in sele- nium.webdriver.support.event_firing_webdriver), 88 execute() (selenium.webdriver.remote.remote_connection.RemoteConnection method), 79 execute() (selenium.webdriver.remote.webdriver.WebDriver method), 58 EXECUTE_ASYNC_SCRIPT (sele- nium.webdriver.remote.command.Command attribute), 73 execute_async_script() (sele- nium.webdriver.remote.webdriver.WebDriver method), 58 execute_async_script() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 execute_cdp_cmd() (sele- nium.webdriver.chrome.webdriver.WebDriver method), 54 EXECUTE_SCRIPT (sele- nium.webdriver.remote.command.Command attribute), 73 execute_script() (selenium.webdriver.remote.webdriver.WebDriver method), 58 execute_script() (selenium.webdriver.support.event_firing_webdriver.EventF method), 88 EXECUTE_SQL (sele- nium.webdriver.remote.command.Command attribute), 73 experimental_options (sele- nium.webdriver.chrome.options.Options attribute), 56 ExtensionConnection (class in sele- nium.webdriver.firefox.extension_connection), 53 ExtensionConnectionError, 53 extensions (selenium.webdriver.chrome.options.Options attribute), 56 F F1 (selenium.webdriver.common.keys.Keys attribute), 41 F10 (selenium.webdriver.common.keys.Keys attribute), 41 F11 (selenium.webdriver.common.keys.Keys attribute), 41 F12 (selenium.webdriver.common.keys.Keys attribute), 41 F2 (selenium.webdriver.common.keys.Keys attribute), 41 F3 (selenium.webdriver.common.keys.Keys attribute), 41 F4 (selenium.webdriver.common.keys.Keys attribute), 41 F5 (selenium.webdriver.common.keys.Keys attribute), 41 F6 (selenium.webdriver.common.keys.Keys attribute), 41 F7 (selenium.webdriver.common.keys.Keys attribute), 42 F8 (selenium.webdriver.common.keys.Keys attribute), 42 F9 (selenium.webdriver.common.keys.Keys attribute), 42 file_detector (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 file_detector_context() (sele- nium.webdriver.remote.webdriver.WebDriver method), 58 FIND_CHILD_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 73 FIND_CHILD_ELEMENTS (sele- nium.webdriver.remote.command.Command attribute), 73 find_connectable_ip() (in module sele- nium.webdriver.common.utils), 47 FIND_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 73 find_element() (selenium.webdriver.remote.webdriver.WebDriver method), 59 find_element() (selenium.webdriver.remote.webelement.WebElement method), 67 find_element() (selenium.webdriver.support.event_firing_webdriver.EventFi method), 88 108 Index
  • 115. Selenium Python Bindings, Release 2 find_element() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_element_by_class_name() (sele- nium.webdriver.remote.webdriver.WebDriver method), 59 find_element_by_class_name() (sele- nium.webdriver.remote.webelement.WebElement method), 67 find_element_by_class_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_element_by_class_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_element_by_css_selector() (sele- nium.webdriver.remote.webdriver.WebDriver method), 59 find_element_by_css_selector() (sele- nium.webdriver.remote.webelement.WebElement method), 67 find_element_by_css_selector() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_element_by_css_selector() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_element_by_id() (sele- nium.webdriver.remote.webdriver.WebDriver method), 59 find_element_by_id() (sele- nium.webdriver.remote.webelement.WebElement method), 67 find_element_by_id() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_element_by_id() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_element_by_link_text() (sele- nium.webdriver.remote.webdriver.WebDriver method), 59 find_element_by_link_text() (sele- nium.webdriver.remote.webelement.WebElement method), 67 find_element_by_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_element_by_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_element_by_name() (sele- nium.webdriver.remote.webdriver.WebDriver method), 60 find_element_by_name() (sele- nium.webdriver.remote.webelement.WebElement method), 68 find_element_by_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_element_by_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 find_element_by_partial_link_text() (sele- nium.webdriver.remote.webdriver.WebDriver method), 60 find_element_by_partial_link_text() (sele- nium.webdriver.remote.webelement.WebElement method), 68 find_element_by_partial_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_element_by_partial_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 find_element_by_tag_name() (sele- nium.webdriver.remote.webdriver.WebDriver method), 60 find_element_by_tag_name() (sele- nium.webdriver.remote.webelement.WebElement method), 68 find_element_by_tag_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_element_by_tag_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 find_element_by_xpath() (sele- nium.webdriver.remote.webdriver.WebDriver method), 60 find_element_by_xpath() (sele- nium.webdriver.remote.webelement.WebElement method), 68 find_element_by_xpath() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_element_by_xpath() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 FIND_ELEMENTS (sele- nium.webdriver.remote.command.Command attribute), 73 find_elements() (selenium.webdriver.remote.webdriver.WebDriver method), 61 find_elements() (selenium.webdriver.remote.webelement.WebElement method), 69 find_elements() (selenium.webdriver.support.event_firing_webdriver.EventF method), 88 find_elements() (selenium.webdriver.support.event_firing_webdriver.EventF Index 109
  • 116. Selenium Python Bindings, Release 2 method), 89 find_elements_by_class_name() (sele- nium.webdriver.remote.webdriver.WebDriver method), 61 find_elements_by_class_name() (sele- nium.webdriver.remote.webelement.WebElement method), 69 find_elements_by_class_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_elements_by_class_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_elements_by_css_selector() (sele- nium.webdriver.remote.webdriver.WebDriver method), 61 find_elements_by_css_selector() (sele- nium.webdriver.remote.webelement.WebElement method), 69 find_elements_by_css_selector() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_elements_by_css_selector() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_elements_by_id() (sele- nium.webdriver.remote.webdriver.WebDriver method), 61 find_elements_by_id() (sele- nium.webdriver.remote.webelement.WebElement method), 69 find_elements_by_id() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_elements_by_id() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_elements_by_link_text() (sele- nium.webdriver.remote.webdriver.WebDriver method), 61 find_elements_by_link_text() (sele- nium.webdriver.remote.webelement.WebElement method), 69 find_elements_by_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 find_elements_by_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement method), 89 find_elements_by_name() (sele- nium.webdriver.remote.webdriver.WebDriver method), 62 find_elements_by_name() (sele- nium.webdriver.remote.webelement.WebElement method), 70 find_elements_by_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_elements_by_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 find_elements_by_partial_link_text() (sele- nium.webdriver.remote.webdriver.WebDriver method), 62 find_elements_by_partial_link_text() (sele- nium.webdriver.remote.webelement.WebElement method), 70 find_elements_by_partial_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_elements_by_partial_link_text() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 find_elements_by_tag_name() (sele- nium.webdriver.remote.webdriver.WebDriver method), 62 find_elements_by_tag_name() (sele- nium.webdriver.remote.webelement.WebElement method), 70 find_elements_by_tag_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_elements_by_tag_name() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 find_elements_by_xpath() (sele- nium.webdriver.remote.webdriver.WebDriver method), 62 find_elements_by_xpath() (sele- nium.webdriver.remote.webelement.WebElement method), 70 find_elements_by_xpath() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebD method), 88 find_elements_by_xpath() (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebE method), 89 FIREFOX (selenium.webdriver.common.desired_capabilities.DesiredCapab attribute), 44 firefox_profile (selenium.webdriver.firefox.webdriver.WebDriver attribute), 51 FirefoxBinary (class in sele- nium.webdriver.firefox.firefox_binary), 52 FirefoxProfile (class in sele- nium.webdriver.firefox.firefox_profile), 52 first_selected_option (sele- nium.webdriver.support.select.Select attribute), 86 110 Index
  • 117. Selenium Python Bindings, Release 2 FLICK (selenium.webdriver.remote.command.Command attribute), 73 flick() (selenium.webdriver.common.touch_actions.TouchActions method), 44 flick_element() (selenium.webdriver.common.touch_actions.TouchActions method), 44 format_json() (in module sele- nium.webdriver.remote.utils), 79 forward() (selenium.webdriver.remote.webdriver.WebDriver method), 62 forward() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 frame_to_be_available_and_switch_to_it (class in sele- nium.webdriver.support.expected_conditions), 91 free_port() (in module sele- nium.webdriver.common.utils), 47 from_string() (selenium.webdriver.support.color.Color static method), 87 ftp_proxy (selenium.webdriver.common.proxy.Proxy at- tribute), 46 ftpProxy (selenium.webdriver.common.proxy.Proxy at- tribute), 46 FULLSCREEN_WINDOW (sele- nium.webdriver.remote.command.Command attribute), 74 fullscreen_window() (sele- nium.webdriver.remote.webdriver.WebDriver method), 62 G GET (selenium.webdriver.remote.command.Command attribute), 74 get() (selenium.webdriver.remote.webdriver.WebDriver method), 62 get() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 GET_ACTIVE_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ALERT_TEXT (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ALL_COOKIES (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ALL_SESSIONS (sele- nium.webdriver.remote.command.Command attribute), 74 GET_APP_CACHE (sele- nium.webdriver.remote.command.Command attribute), 74 GET_APP_CACHE_STATUS (sele- nium.webdriver.remote.command.Command attribute), 74 get_attribute() (selenium.webdriver.remote.webelement.WebElement method), 71 GET_AVAILABLE_LOG_TYPES (sele- nium.webdriver.remote.command.Command attribute), 74 GET_COOKIE (selenium.webdriver.remote.command.Command attribute), 74 get_cookie() (selenium.webdriver.remote.webdriver.WebDriver method), 62 get_cookies() (selenium.webdriver.remote.webdriver.WebDriver method), 62 GET_CURRENT_URL (sele- nium.webdriver.remote.command.Command attribute), 74 GET_CURRENT_WINDOW_HANDLE (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_ATTRIBUTE (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_LOCATION (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_LOCATION_ONCE_SCROLLED_INTO_VIEW (selenium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_PROPERTY (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_RECT (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_SIZE (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_TAG_NAME (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_TEXT (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_VALUE (sele- nium.webdriver.remote.command.Command attribute), 74 GET_ELEMENT_VALUE_OF_CSS_PROPERTY (se- lenium.webdriver.remote.command.Command attribute), 74 GET_LOCAL_STORAGE_ITEM (sele- nium.webdriver.remote.command.Command attribute), 74 GET_LOCAL_STORAGE_KEYS (sele- nium.webdriver.remote.command.Command attribute), 74 Index 111
  • 118. Selenium Python Bindings, Release 2 GET_LOCAL_STORAGE_SIZE (sele- nium.webdriver.remote.command.Command attribute), 74 GET_LOCATION (sele- nium.webdriver.remote.command.Command attribute), 74 GET_LOG (selenium.webdriver.remote.command.Command attribute), 74 get_log() (selenium.webdriver.remote.webdriver.WebDriver method), 63 get_network_conditions() (sele- nium.webdriver.chrome.webdriver.WebDriver method), 54 GET_NETWORK_CONNECTION (sele- nium.webdriver.remote.command.Command attribute), 74 GET_PAGE_SOURCE (sele- nium.webdriver.remote.command.Command attribute), 74 get_permission() (selenium.webdriver.safari.webdriver.WebDriver method), 84 get_property() (selenium.webdriver.remote.webelement.WebElement method), 71 get_remote_connection_headers() (sele- nium.webdriver.remote.remote_connection.RemoteConnection class method), 79 GET_SCREEN_ORIENTATION (sele- nium.webdriver.remote.command.Command attribute), 74 get_screenshot_as_base64() (sele- nium.webdriver.remote.webdriver.WebDriver method), 63 get_screenshot_as_file() (sele- nium.webdriver.remote.webdriver.WebDriver method), 63 get_screenshot_as_png() (sele- nium.webdriver.remote.webdriver.WebDriver method), 63 GET_SESSION_STORAGE_ITEM (sele- nium.webdriver.remote.command.Command attribute), 74 GET_SESSION_STORAGE_KEYS (sele- nium.webdriver.remote.command.Command attribute), 74 GET_SESSION_STORAGE_SIZE (sele- nium.webdriver.remote.command.Command attribute), 74 get_timeout() (selenium.webdriver.remote.remote_connection.RemoteConnection class method), 79 GET_TITLE (selenium.webdriver.remote.command.Command attribute), 74 GET_WINDOW_HANDLES (sele- nium.webdriver.remote.command.Command attribute), 74 GET_WINDOW_POSITION (sele- nium.webdriver.remote.command.Command attribute), 74 get_window_position() (sele- nium.webdriver.remote.webdriver.WebDriver method), 63 GET_WINDOW_RECT (sele- nium.webdriver.remote.command.Command attribute), 75 get_window_rect() (sele- nium.webdriver.remote.webdriver.WebDriver method), 63 GET_WINDOW_SIZE (sele- nium.webdriver.remote.command.Command attribute), 75 get_window_size() (sele- nium.webdriver.remote.webdriver.WebDriver method), 63 GO_BACK (selenium.webdriver.remote.command.Command attribute), 75 GO_FORWARD (selenium.webdriver.remote.command.Command attribute), 75 H headless (selenium.webdriver.chrome.options.Options at- tribute), 56 headless (selenium.webdriver.firefox.options.Options at- tribute), 51 HELP (selenium.webdriver.common.keys.Keys at- tribute), 42 hex (selenium.webdriver.support.color.Color attribute), 87 HOME (selenium.webdriver.common.keys.Keys at- tribute), 42 HTMLUNIT (selenium.webdriver.common.desired_capabilities.DesiredCap attribute), 44 HTMLUNITWITHJS (sele- nium.webdriver.common.desired_capabilities.DesiredCapabilities attribute), 44 http_proxy (selenium.webdriver.common.proxy.Proxy at- tribute), 46 httpProxy (selenium.webdriver.common.proxy.Proxy at- tribute), 46 I ID (selenium.webdriver.common.by.By attribute), 43 id (selenium.webdriver.remote.webelement.WebElement attribute), 72 IDLE (selenium.webdriver.common.html5.application_cache.ApplicationCa attribute), 49 IME_ENGINE_ACTIVATION_FAILED (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 112 Index
  • 119. Selenium Python Bindings, Release 2 IME_NOT_AVAILABLE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 ImeActivationFailedException, 33 ImeNotAvailableException, 33 IMPLICIT_WAIT (sele- nium.webdriver.remote.command.Command attribute), 75 implicitly_wait() (selenium.webdriver.remote.webdriver.WebDriver method), 63 INSECURE_CERTIFICATE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 InsecureCertificateException, 33 INSERT (selenium.webdriver.common.keys.Keys at- tribute), 42 install_addon() (selenium.webdriver.firefox.webdriver.WebDriver method), 50 INTERNETEXPLORER (sele- nium.webdriver.common.desired_capabilities.DesiredCapabilities attribute), 44 INVALID_ARGUMENT (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_COOKIE_DOMAIN (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_COORDINATES (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_ELEMENT_COORDINATES (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_ELEMENT_STATE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_SELECTOR (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_SESSION_ID (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_XPATH_SELECTOR (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 INVALID_XPATH_SELECTOR_RETURN_TYPER (selenium.webdriver.remote.errorhandler.ErrorCode attribute), 77 InvalidArgumentException, 33 InvalidCookieDomainException, 33 InvalidCoordinatesException, 33 InvalidElementStateException, 34 InvalidSelectorException, 34 InvalidSessionIdException, 34 InvalidSwitchToTargetException, 34 invisibility_of_element (class in sele- nium.webdriver.support.expected_conditions), 91 invisibility_of_element_located (class in sele- nium.webdriver.support.expected_conditions), 91 IPAD (selenium.webdriver.common.desired_capabilities.DesiredCapabilitie attribute), 44 IPHONE (selenium.webdriver.common.desired_capabilities.DesiredCapabil attribute), 44 is_connectable() (in module sele- nium.webdriver.common.utils), 47 is_connectable() (selenium.webdriver.common.service.Service method), 48 is_connectable() (selenium.webdriver.firefox.extension_connection.Extensio class method), 53 is_displayed() (selenium.webdriver.remote.webelement.WebElement method), 71 IS_ELEMENT_DISPLAYED (sele- nium.webdriver.remote.command.Command attribute), 75 IS_ELEMENT_ENABLED (sele- nium.webdriver.remote.command.Command attribute), 75 IS_ELEMENT_SELECTED (sele- nium.webdriver.remote.command.Command attribute), 75 is_enabled() (selenium.webdriver.remote.webelement.WebElement method), 71 is_selected() (selenium.webdriver.remote.webelement.WebElement method), 71 is_url_connectable() (in module sele- nium.webdriver.common.utils), 47 J JAVASCRIPT_ERROR (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 JavascriptException, 34 join_host_port() (in module sele- nium.webdriver.common.utils), 48 K KEY (selenium.webdriver.chrome.options.Options attribute), 56 KEY (selenium.webdriver.firefox.options.Options at- tribute), 51 key_down() (selenium.webdriver.common.action_chains.ActionChains method), 38 key_up() (selenium.webdriver.common.action_chains.ActionChains method), 39 Keys (class in selenium.webdriver.common.keys), 41 Index 113
  • 120. Selenium Python Bindings, Release 2 keys_to_typing() (in module sele- nium.webdriver.common.utils), 48 kill() (selenium.webdriver.firefox.firefox_binary.FirefoxBinary method), 53 L launch_app() (selenium.webdriver.chrome.webdriver.WebDriver method), 55 launch_browser() (sele- nium.webdriver.firefox.firefox_binary.FirefoxBinary method), 53 LEFT (selenium.webdriver.common.keys.Keys attribute), 42 LEFT_ALT (selenium.webdriver.common.keys.Keys at- tribute), 42 LEFT_CONTROL (sele- nium.webdriver.common.keys.Keys attribute), 42 LEFT_SHIFT (selenium.webdriver.common.keys.Keys attribute), 42 LINK_TEXT (selenium.webdriver.common.by.By attribute), 43 load() (selenium.webdriver.common.proxy.ProxyType class method), 47 load_json() (in module selenium.webdriver.remote.utils), 79 location (selenium.webdriver.remote.webelement.WebElement attribute), 72 location_once_scrolled_into_view (sele- nium.webdriver.remote.webelement.WebElement attribute), 72 Log (class in selenium.webdriver.firefox.options), 51 log_types (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 LONG_PRESS (selenium.webdriver.remote.command.Command attribute), 75 long_press() (selenium.webdriver.common.touch_actions.TouchActions method), 45 M make() (selenium.webdriver.common.proxy.ProxyTypeFactory static method), 47 MANUAL (selenium.webdriver.common.proxy.ProxyType attribute), 47 MAXIMIZE_WINDOW (sele- nium.webdriver.remote.command.Command attribute), 75 maximize_window() (sele- nium.webdriver.remote.webdriver.WebDriver method), 64 META (selenium.webdriver.common.keys.Keys at- tribute), 42 METHOD_NOT_ALLOWED (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 MINIMIZE_WINDOW (sele- nium.webdriver.remote.command.Command attribute), 75 minimize_window() (sele- nium.webdriver.remote.webdriver.WebDriver method), 64 Mobile (class in selenium.webdriver.remote.mobile), 78 mobile (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 Mobile.ConnectionType (class in sele- nium.webdriver.remote.mobile), 78 MOUSE_DOWN (sele- nium.webdriver.remote.command.Command attribute), 75 MOUSE_UP (selenium.webdriver.remote.command.Command attribute), 75 move() (selenium.webdriver.common.touch_actions.TouchActions method), 45 move_by_offset() (sele- nium.webdriver.common.action_chains.ActionChains method), 39 MOVE_TARGET_OUT_OF_BOUNDS (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 MOVE_TO (selenium.webdriver.remote.command.Command attribute), 75 move_to_element() (sele- nium.webdriver.common.action_chains.ActionChains method), 39 move_to_element_with_offset() (sele- nium.webdriver.common.action_chains.ActionChains method), 39 MoveTargetOutOfBoundsException, 34 MULTIPLY (selenium.webdriver.common.keys.Keys at- tribute), 42 N NAME (selenium.webdriver.common.by.By attribute), 43 name (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 NATIVE_EVENTS_ALLOWED (sele- nium.webdriver.firefox.webdriver.WebDriver attribute), 51 native_events_enabled (sele- nium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 network_connection (sele- nium.webdriver.remote.mobile.Mobile at- tribute), 78 NEW_SESSION (sele- nium.webdriver.remote.command.Command attribute), 75 114 Index
  • 121. Selenium Python Bindings, Release 2 new_window_is_opened (class in sele- nium.webdriver.support.expected_conditions), 91 NO_ALERT_OPEN (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 NO_FOCUS_LIBRARY_NAME (sele- nium.webdriver.firefox.firefox_binary.FirefoxBinary attribute), 53 no_proxy (selenium.webdriver.common.proxy.Proxy at- tribute), 46 NO_SUCH_COOKIE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 NO_SUCH_ELEMENT (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 NO_SUCH_FRAME (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 NO_SUCH_WINDOW (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 NoAlertPresentException, 34 noProxy (selenium.webdriver.common.proxy.Proxy at- tribute), 46 NoSuchAttributeException, 35 NoSuchCookieException, 35 NoSuchElementException, 35 NoSuchFrameException, 35 NoSuchWindowException, 35 NULL (selenium.webdriver.common.keys.Keys at- tribute), 42 number_of_windows_to_be (class in sele- nium.webdriver.support.expected_conditions), 91 NUMPAD0 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD1 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD2 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD3 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD4 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD5 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD6 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD7 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD8 (selenium.webdriver.common.keys.Keys at- tribute), 42 NUMPAD9 (selenium.webdriver.common.keys.Keys at- tribute), 42 O OBSOLETE (selenium.webdriver.common.html5.application_cache.Applic attribute), 49 on_exception() (selenium.webdriver.support.abstract_event_listener.Abstrac method), 90 OPERA (selenium.webdriver.common.desired_capabilities.DesiredCapabili attribute), 44 OperaDriver (class in sele- nium.webdriver.opera.webdriver), 81 Options (class in selenium.webdriver.chrome.options), 55 Options (class in selenium.webdriver.firefox.options), 51 options (selenium.webdriver.support.select.Select at- tribute), 86 orientation (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 P PAC (selenium.webdriver.common.proxy.ProxyType at- tribute), 47 PAGE_DOWN (selenium.webdriver.common.keys.Keys attribute), 42 page_source (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 PAGE_UP (selenium.webdriver.common.keys.Keys at- tribute), 42 parent (selenium.webdriver.remote.webelement.WebElement attribute), 72 PARTIAL_LINK_TEXT (sele- nium.webdriver.common.by.By attribute), 43 path (selenium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 PAUSE (selenium.webdriver.common.keys.Keys at- tribute), 42 pause() (selenium.webdriver.common.action_chains.ActionChains method), 39 perform() (selenium.webdriver.common.action_chains.ActionChains method), 39 perform() (selenium.webdriver.common.touch_actions.TouchActions method), 45 PHANTOMJS (selenium.webdriver.common.desired_capabilities.DesiredCa attribute), 44 port (selenium.webdriver.firefox.firefox_profile.FirefoxProfile attribute), 52 preferences (selenium.webdriver.firefox.options.Options attribute), 51 presence_of_all_elements_located (class in sele- nium.webdriver.support.expected_conditions), 91 presence_of_element_located (class in sele- nium.webdriver.support.expected_conditions), Index 115
  • 122. Selenium Python Bindings, Release 2 92 profile (selenium.webdriver.firefox.options.Options at- tribute), 51 Proxy (class in selenium.webdriver.common.proxy), 46 proxy (selenium.webdriver.firefox.options.Options attribute), 51 proxy_autoconfig_url (sele- nium.webdriver.common.proxy.Proxy at- tribute), 46 proxy_type (selenium.webdriver.common.proxy.Proxy attribute), 46 proxyAutoconfigUrl (sele- nium.webdriver.common.proxy.Proxy at- tribute), 46 ProxyType (class in selenium.webdriver.common.proxy), 47 proxyType (selenium.webdriver.common.proxy.Proxy at- tribute), 46 ProxyTypeFactory (class in sele- nium.webdriver.common.proxy), 47 Q QUIT (selenium.webdriver.remote.command.Command attribute), 75 quit() (selenium.webdriver.chrome.webdriver.WebDriver method), 55 quit() (selenium.webdriver.firefox.extension_connection.ExtensionConnection method), 53 quit() (selenium.webdriver.firefox.webdriver.WebDriver method), 50 quit() (selenium.webdriver.ie.webdriver.WebDriver method), 80 quit() (selenium.webdriver.phantomjs.webdriver.WebDriver method), 83 quit() (selenium.webdriver.remote.webdriver.WebDriver method), 64 quit() (selenium.webdriver.safari.webdriver.WebDriver method), 84 quit() (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver method), 88 R rect (selenium.webdriver.remote.webelement.WebElement attribute), 72 REFRESH (selenium.webdriver.remote.command.Command attribute), 75 refresh() (selenium.webdriver.remote.webdriver.WebDriver method), 64 release() (selenium.webdriver.common.action_chains.ActionChains method), 39 release() (selenium.webdriver.common.touch_actions.TouchActions method), 45 RemoteConnection (class in sele- nium.webdriver.remote.remote_connection), 78 RemoteDriverServerException, 35 REMOVE_LOCAL_STORAGE_ITEM (sele- nium.webdriver.remote.command.Command attribute), 75 REMOVE_SESSION_STORAGE_ITEM (sele- nium.webdriver.remote.command.Command attribute), 75 RESERVED_1 (selenium.webdriver.common.proxy.ProxyType attribute), 47 reset_actions() (selenium.webdriver.common.action_chains.ActionChains method), 39 reset_timeout() (selenium.webdriver.remote.remote_connection.RemoteCon class method), 79 RETURN (selenium.webdriver.common.keys.Keys at- tribute), 42 rgb (selenium.webdriver.support.color.Color attribute), 87 rgba (selenium.webdriver.support.color.Color attribute), 87 RIGHT (selenium.webdriver.common.keys.Keys at- tribute), 42 S SAFARI (selenium.webdriver.common.desired_capabilities.DesiredCapabil attribute), 44 save_screenshot() (sele- nium.webdriver.remote.webdriver.WebDriver method), 64 SCREENSHOT (selenium.webdriver.remote.command.Command attribute), 75 screenshot() (selenium.webdriver.remote.webelement.WebElement method), 71 screenshot_as_base64 (sele- nium.webdriver.remote.webelement.WebElement attribute), 72 screenshot_as_png (sele- nium.webdriver.remote.webelement.WebElement attribute), 72 ScreenshotException, 35 SCRIPT_TIMEOUT (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 scroll() (selenium.webdriver.common.touch_actions.TouchActions method), 45 scroll_from_element() (sele- nium.webdriver.common.touch_actions.TouchActions method), 45 Select (class in selenium.webdriver.support.select), 85 select_by_index() (sele- nium.webdriver.support.select.Select method), 85 select_by_value() (sele- nium.webdriver.support.select.Select method), 85 116 Index
  • 123. Selenium Python Bindings, Release 2 select_by_visible_text() (sele- nium.webdriver.support.select.Select method), 86 selenium.common.exceptions (module), 32 selenium.webdriver.android.webdriver (module), 81 selenium.webdriver.chrome.options (module), 55 selenium.webdriver.chrome.service (module), 56 selenium.webdriver.chrome.webdriver (module), 54 selenium.webdriver.common.action_chains (module), 37 selenium.webdriver.common.alert (module), 40 selenium.webdriver.common.by (module), 43 selenium.webdriver.common.desired_capabilities (mod- ule), 43 selenium.webdriver.common.html5.application_cache (module), 48 selenium.webdriver.common.keys (module), 41 selenium.webdriver.common.proxy (module), 46 selenium.webdriver.common.service (module), 48 selenium.webdriver.common.touch_actions (module), 44 selenium.webdriver.common.utils (module), 47 selenium.webdriver.firefox.extension_connection (mod- ule), 53 selenium.webdriver.firefox.firefox_binary (module), 52 selenium.webdriver.firefox.firefox_profile (module), 52 selenium.webdriver.firefox.options (module), 51 selenium.webdriver.firefox.webdriver (module), 49 selenium.webdriver.ie.webdriver (module), 80 selenium.webdriver.opera.webdriver (module), 81 selenium.webdriver.phantomjs.service (module), 83 selenium.webdriver.phantomjs.webdriver (module), 82 selenium.webdriver.remote.command (module), 73 selenium.webdriver.remote.errorhandler (module), 76 selenium.webdriver.remote.mobile (module), 78 selenium.webdriver.remote.remote_connection (module), 78 selenium.webdriver.remote.utils (module), 79 selenium.webdriver.remote.webdriver (module), 56 selenium.webdriver.remote.webelement (module), 66 selenium.webdriver.safari.service (module), 84 selenium.webdriver.safari.webdriver (module), 83 selenium.webdriver.support.abstract_event_listener (module), 89 selenium.webdriver.support.color (module), 87 selenium.webdriver.support.event_firing_webdriver (module), 87 selenium.webdriver.support.expected_conditions (mod- ule), 90 selenium.webdriver.support.select (module), 85 selenium.webdriver.support.wait (module), 86 SEMICOLON (selenium.webdriver.common.keys.Keys attribute), 42 send_keys() (selenium.webdriver.common.action_chains.ActionChains method), 39 send_keys() (selenium.webdriver.common.alert.Alert method), 40 send_keys() (selenium.webdriver.remote.webelement.WebElement method), 71 send_keys() (selenium.webdriver.support.event_firing_webdriver.EventFirin method), 89 SEND_KEYS_TO_ACTIVE_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 75 SEND_KEYS_TO_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 75 send_keys_to_element() (sele- nium.webdriver.common.action_chains.ActionChains method), 40 send_remote_shutdown_command() (sele- nium.webdriver.common.service.Service method), 48 send_remote_shutdown_command() (sele- nium.webdriver.phantomjs.service.Service method), 83 SEPARATOR (selenium.webdriver.common.keys.Keys attribute), 42 Service (class in selenium.webdriver.chrome.service), 56 Service (class in selenium.webdriver.common.service), 48 Service (class in selenium.webdriver.phantomjs.service), 83 Service (class in selenium.webdriver.safari.service), 84 service_url (selenium.webdriver.common.service.Service attribute), 48 service_url (selenium.webdriver.phantomjs.service.Service attribute), 83 service_url (selenium.webdriver.safari.service.Service at- tribute), 84 SESSION_NOT_CREATED (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 SessionNotCreatedException, 36 SET_ALERT_CREDENTIALS (sele- nium.webdriver.remote.command.Command attribute), 75 SET_ALERT_VALUE (sele- nium.webdriver.remote.command.Command attribute), 75 set_capability() (selenium.webdriver.chrome.options.Options method), 55 set_capability() (selenium.webdriver.firefox.options.Options method), 51 set_context() (selenium.webdriver.firefox.webdriver.WebDriver method), 50 SET_ELEMENT_SELECTED (sele- nium.webdriver.remote.command.Command attribute), 75 Index 117
  • 124. Selenium Python Bindings, Release 2 set_headless() (selenium.webdriver.chrome.options.Options method), 55 set_headless() (selenium.webdriver.firefox.options.Options method), 51 SET_LOCAL_STORAGE_ITEM (sele- nium.webdriver.remote.command.Command attribute), 75 SET_LOCATION (sele- nium.webdriver.remote.command.Command attribute), 75 set_network_conditions() (sele- nium.webdriver.chrome.webdriver.WebDriver method), 55 SET_NETWORK_CONNECTION (sele- nium.webdriver.remote.command.Command attribute), 75 set_network_connection() (sele- nium.webdriver.remote.mobile.Mobile method), 78 set_page_load_timeout() (sele- nium.webdriver.remote.webdriver.WebDriver method), 64 set_permission() (selenium.webdriver.safari.webdriver.WebDriver method), 84 set_preference() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile method), 52 set_preference() (selenium.webdriver.firefox.options.Options method), 51 set_proxy() (selenium.webdriver.firefox.firefox_profile.FirefoxProfile method), 52 SET_SCREEN_ORIENTATION (sele- nium.webdriver.remote.command.Command attribute), 75 SET_SCRIPT_TIMEOUT (sele- nium.webdriver.remote.command.Command attribute), 75 set_script_timeout() (sele- nium.webdriver.remote.webdriver.WebDriver method), 64 SET_SESSION_STORAGE_ITEM (sele- nium.webdriver.remote.command.Command attribute), 75 set_timeout() (selenium.webdriver.remote.remote_connection.RemoteConnection class method), 79 SET_TIMEOUTS (sele- nium.webdriver.remote.command.Command attribute), 75 SET_WINDOW_POSITION (sele- nium.webdriver.remote.command.Command attribute), 75 set_window_position() (sele- nium.webdriver.remote.webdriver.WebDriver method), 64 SET_WINDOW_RECT (sele- nium.webdriver.remote.command.Command attribute), 75 set_window_rect() (sele- nium.webdriver.remote.webdriver.WebDriver method), 64 SET_WINDOW_SIZE (sele- nium.webdriver.remote.command.Command attribute), 75 set_window_size() (sele- nium.webdriver.remote.webdriver.WebDriver method), 65 SHIFT (selenium.webdriver.common.keys.Keys at- tribute), 42 SINGLE_TAP (selenium.webdriver.remote.command.Command attribute), 75 size (selenium.webdriver.remote.webelement.WebElement attribute), 72 socks_password (selenium.webdriver.common.proxy.Proxy attribute), 46 socks_proxy (selenium.webdriver.common.proxy.Proxy attribute), 46 socks_username (selenium.webdriver.common.proxy.Proxy attribute), 46 socksPassword (selenium.webdriver.common.proxy.Proxy attribute), 46 socksProxy (selenium.webdriver.common.proxy.Proxy attribute), 46 socksUsername (selenium.webdriver.common.proxy.Proxy attribute), 46 SPACE (selenium.webdriver.common.keys.Keys at- tribute), 42 ssl_proxy (selenium.webdriver.common.proxy.Proxy at- tribute), 47 sslProxy (selenium.webdriver.common.proxy.Proxy at- tribute), 47 STALE_ELEMENT_REFERENCE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 StaleElementReferenceException, 36 staleness_of (class in sele- nium.webdriver.support.expected_conditions), 92 start() (selenium.webdriver.common.service.Service method), 48 start_client() (selenium.webdriver.remote.webdriver.WebDriver method), 65 start_session() (selenium.webdriver.remote.webdriver.WebDriver method), 65 status (selenium.webdriver.common.html5.application_cache.ApplicationCa attribute), 49 STATUS (selenium.webdriver.remote.command.Command attribute), 76 stop() (selenium.webdriver.common.service.Service method), 48 118 Index
  • 125. Selenium Python Bindings, Release 2 stop_client() (selenium.webdriver.remote.webdriver.WebDriver method), 65 submit() (selenium.webdriver.remote.webelement.WebElement method), 72 SUBMIT_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 76 SUBTRACT (selenium.webdriver.common.keys.Keys at- tribute), 42 SUCCESS (selenium.webdriver.remote.errorhandler.ErrorCode attribute), 77 switch_to (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 switch_to_active_element() (sele- nium.webdriver.remote.webdriver.WebDriver method), 65 switch_to_alert() (sele- nium.webdriver.remote.webdriver.WebDriver method), 65 SWITCH_TO_CONTEXT (sele- nium.webdriver.remote.command.Command attribute), 76 switch_to_default_content() (sele- nium.webdriver.remote.webdriver.WebDriver method), 65 SWITCH_TO_FRAME (sele- nium.webdriver.remote.command.Command attribute), 76 switch_to_frame() (sele- nium.webdriver.remote.webdriver.WebDriver method), 65 SWITCH_TO_PARENT_FRAME (sele- nium.webdriver.remote.command.Command attribute), 76 SWITCH_TO_WINDOW (sele- nium.webdriver.remote.command.Command attribute), 76 switch_to_window() (sele- nium.webdriver.remote.webdriver.WebDriver method), 65 SYSTEM (selenium.webdriver.common.proxy.ProxyType attribute), 47 T TAB (selenium.webdriver.common.keys.Keys attribute), 42 TAG_NAME (selenium.webdriver.common.by.By attribute), 43 tag_name (selenium.webdriver.remote.webelement.WebElement attribute), 72 tap() (selenium.webdriver.common.touch_actions.TouchActions method), 45 tap_and_hold() (selenium.webdriver.common.touch_actions.TouchActions method), 45 text (selenium.webdriver.common.alert.Alert attribute), 40 text (selenium.webdriver.remote.webelement.WebElement attribute), 73 text_to_be_present_in_element (class in sele- nium.webdriver.support.expected_conditions), 92 text_to_be_present_in_element_value (class in sele- nium.webdriver.support.expected_conditions), 92 TIMEOUT (selenium.webdriver.remote.errorhandler.ErrorCode attribute), 77 TimeoutException, 36 title (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 title_contains (class in sele- nium.webdriver.support.expected_conditions), 92 title_is (class in sele- nium.webdriver.support.expected_conditions), 92 to_capabilities() (selenium.webdriver.chrome.options.Options method), 56 to_capabilities() (selenium.webdriver.firefox.options.Log method), 51 to_capabilities() (selenium.webdriver.firefox.options.Options method), 51 TOUCH_DOWN (sele- nium.webdriver.remote.command.Command attribute), 76 TOUCH_MOVE (selenium.webdriver.remote.command.Command attribute), 76 TOUCH_SCROLL (sele- nium.webdriver.remote.command.Command attribute), 76 TOUCH_UP (selenium.webdriver.remote.command.Command attribute), 76 TouchActions (class in sele- nium.webdriver.common.touch_actions), 44 U UNABLE_TO_CAPTURE_SCREEN (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 UNABLE_TO_SET_COOKIE (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 UnableToSetCookieException, 36 UNCACHED (selenium.webdriver.common.html5.application_cache.Applic attribute), 49 UNEXPECTED_ALERT_OPEN (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 Index 119
  • 126. Selenium Python Bindings, Release 2 UnexpectedAlertPresentException, 36 UnexpectedTagNameException, 36 uninstall_addon() (sele- nium.webdriver.firefox.webdriver.WebDriver method), 50 UNKNOWN_COMMAND (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 UNKNOWN_ERROR (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 UNKNOWN_METHOD (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 UnknownMethodException, 37 UNSPECIFIED (selenium.webdriver.common.proxy.ProxyType attribute), 47 until() (selenium.webdriver.support.wait.WebDriverWait method), 86 until_not() (selenium.webdriver.support.wait.WebDriverWait method), 87 unzip_to_temp_dir() (in module sele- nium.webdriver.remote.utils), 79 UP (selenium.webdriver.common.keys.Keys attribute), 42 update_preferences() (sele- nium.webdriver.firefox.firefox_profile.FirefoxProfile method), 52 UPDATE_READY (sele- nium.webdriver.common.html5.application_cache.ApplicationCache attribute), 49 UPLOAD_FILE (selenium.webdriver.remote.command.Command attribute), 76 url_changes (class in sele- nium.webdriver.support.expected_conditions), 92 url_contains (class in sele- nium.webdriver.support.expected_conditions), 92 url_matches (class in sele- nium.webdriver.support.expected_conditions), 93 url_to_be (class in sele- nium.webdriver.support.expected_conditions), 93 V value_of_css_property() (sele- nium.webdriver.remote.webelement.WebElement method), 72 visibility_of (class in sele- nium.webdriver.support.expected_conditions), 93 visibility_of_all_elements_located (class in sele- nium.webdriver.support.expected_conditions), 93 visibility_of_any_elements_located (class in sele- nium.webdriver.support.expected_conditions), 93 visibility_of_element_located (class in sele- nium.webdriver.support.expected_conditions), 93 W W3C_ACCEPT_ALERT (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_ACTIONS (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_CLEAR_ACTIONS (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_DISMISS_ALERT (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_EXECUTE_SCRIPT (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_EXECUTE_SCRIPT_ASYNC (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_GET_ACTIVE_ELEMENT (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_GET_ALERT_TEXT (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_GET_CURRENT_WINDOW_HANDLE (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_GET_WINDOW_HANDLES (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_GET_WINDOW_POSITION (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_GET_WINDOW_SIZE (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_MAXIMIZE_WINDOW (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_SET_ALERT_VALUE (sele- nium.webdriver.remote.command.Command attribute), 76 W3C_SET_WINDOW_POSITION (sele- nium.webdriver.remote.command.Command attribute), 76 120 Index
  • 127. Selenium Python Bindings, Release 2 W3C_SET_WINDOW_SIZE (sele- nium.webdriver.remote.command.Command attribute), 76 WebDriver (class in sele- nium.webdriver.android.webdriver), 81 WebDriver (class in sele- nium.webdriver.chrome.webdriver), 54 WebDriver (class in sele- nium.webdriver.firefox.webdriver), 49 WebDriver (class in selenium.webdriver.ie.webdriver), 80 WebDriver (class in sele- nium.webdriver.opera.webdriver), 82 WebDriver (class in sele- nium.webdriver.phantomjs.webdriver), 82 WebDriver (class in sele- nium.webdriver.remote.webdriver), 56 WebDriver (class in sele- nium.webdriver.safari.webdriver), 83 WebDriver.ServiceType (class in sele- nium.webdriver.opera.webdriver), 82 WebDriverException, 37 WebDriverWait (class in sele- nium.webdriver.support.wait), 86 WebElement (class in sele- nium.webdriver.remote.webelement), 66 WEBKITGTK (selenium.webdriver.common.desired_capabilities.DesiredCapabilities attribute), 44 which() (selenium.webdriver.firefox.firefox_binary.FirefoxBinary method), 53 wifi (selenium.webdriver.remote.mobile.Mobile.ConnectionType attribute), 78 WIFI_NETWORK (sele- nium.webdriver.remote.mobile.Mobile at- tribute), 78 window_handles (selenium.webdriver.remote.webdriver.WebDriver attribute), 66 wrapped_driver (selenium.webdriver.support.event_firing_webdriver.EventFiringWebDriver attribute), 88 wrapped_element (sele- nium.webdriver.support.event_firing_webdriver.EventFiringWebElement attribute), 89 X XPATH (selenium.webdriver.common.by.By attribute), 43 XPATH_LOOKUP_ERROR (sele- nium.webdriver.remote.errorhandler.ErrorCode attribute), 77 Index 121