Selenium Python
Selenium Python
Selenium Python
Release 2
Baiju Muthukadan
CONTENTS
ii
Author Baiju Muthukadan Fork me on Github PDF version Note: This is not an ofcial documentation. Ofcial API documentation is available here.
CONTENTS
CONTENTS
CHAPTER
ONE
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 and Chrome. The current supported Python versions are Python 2.6 and Python 2.7. Python 3 is not yet supported. Selenium server is a Java program. Java Runtime Environment (JRE) 1.6 or newer version is recommended to run Selenium server. This article explain using Selenium 2 with WebDriver API. Selenium 1 / Selenium RC API is not covered here.
or:
pip install selenium
This step will create a folder named selenv which can be used to install selenium.
4. Install selenium
selenv\Scripts\pip.exe install selenium
Now you can run your scripts using the Python inside the virtual environment.
selenv\Scripts\python.exe my_selenium_script.py
Chapter 1. Installation
CHAPTER
TWO
GETTING STARTED
2.1 Simple Usage
If you have installed Selenium server and Python bindings and able to run the server, 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.send_keys("selenium") elem.send_keys(Keys.RETURN) assert "Google" in driver.title driver.close()
The above script can be saved into a le (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.
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 red) before returning control to your test or script. Its 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 conrm that title has Python word in it:
assert "Python" in driver.title
WebDriver offers a number of ways to nd elements using one of the nd_element_by_* methods. For example, the input text element can be located by its name attribute using nd_element_by_name method. Detailed explanation of ndind 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("selenium") elem.send_keys(Keys.RETURN)
After submission of the page, you should be reached in the Google site:
assert "Google" in driver.title
Finally, the browser window is closed. You can also call quit method instead of close. The quit will exit entire browser where as close will close one tab, but if it just one tab, by default most browser will exit entirely.:
driver.close()
You can run the above test case from a shell like this:
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 rst 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
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 red) before returning control to your test or script. Its 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 conrm that title has Python word in it:
self.assertIn("Python", driver.title)
Note: The assertIn API is only available in Python 2.7 unittest module. WebDriver offers a number of ways to nd elements using one of the nd_element_by_* methods. For example, the input text element can be located by its name attribute using nd_element_by_name method. Detailed explanation of ndind 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("selenium") elem.send_keys(Keys.RETURN)
After submission of the page, you should be reached in the Google site. You can conrm it by asserting Google in the title:
self.assertIn("Google", driver.title)
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 all entire browser where as close will close one tab, but if it just one tab, 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()
While running the Selenium server, you could see a message looks 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.webdriver.common.desired_capabilities import DesiredCapabilities 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 species the values explicitly:
driver = webdriver.Remote( command_executor=http://127.0.0.1:4444/wd/hub, desired_capabilities={browserName: htmlunit, version: 2, javascriptEnabled: True})
CHAPTER
THREE
NAVIGATING
The rst thing youll want to do with WebDriver is navigate to a page. The normal way to do this is by calling get:
driver.get("http://www.google.com");
WebDriver will wait until the page has fully loaded (that is, the onload event has red) before returning control to your test or script. Its 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.
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 theres more than one element that matches the query, then only the rst 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 IDEs auto-complete key combination, not all of them will make sense or be valid. Dont 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. So, youve got an element. What can you do with it? First of all, you may want to enter some text into a text eld:
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 eld wont automatically clear it. Instead, what you
type will be appended to whats already there. You can easily clear the contents of a text eld or textarea with clear method:
element.clear();
This will nd the rst SELECT element on the page, and cycle through each of its OPTIONs in turn, printing out their values, and selecting each in turn. Once youve nished lling out the form, you probably want to submit it. One way to do this would be to nd 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 nds the enclosing form and then calls submit on that. If the element isnt in a form, then the NoSuchElementException will be raised:
element.submit();
All calls to driver will now be interpreted as being directed to the particular window. But how do you know the windows name? Take a look at the javascript or link that opened it:
10
Chapter 3. Navigating
Alternatively, you can pass a window handle to the switch_to_window() method. Knowing this, its 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")
Its 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 rst subframe of the frame called frameName. All frames are evaluated as if from *top*.
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, conrms, prompts. Refer to the API documentation for more information.
Please be aware that this functionality depends entirely on the underlying driver. Its just possible that something unexpected may happen when you call these methods if youre used to the behaviour 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:
11
# Go to the correct domain driver.get("http://www.example.com") # Now set the cookie. This ones valid for the entire domain cookie = {"key": "value"}) driver.add_cookie(cookie) # And now output all the available cookies for the current URL all_cookies = driver.get_cookies() for cookie_name, cookie_value in all_cookies.items(): print "%s -> %s", cookie_name, cookie_value
12
Chapter 3. Navigating
CHAPTER
FOUR
LOCATING ELEMENTS
There are vaious 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: nd_element_by_id nd_element_by_name nd_element_by_xpath nd_element_by_link_text nd_element_by_partial_link_text nd_element_by_tag_name nd_element_by_class_name nd_element_by_css_selector To nd multiple elements (these methods will return a list): nd_elements_by_name nd_elements_by_xpath nd_elements_by_link_text nd_elements_by_partial_link_text nd_elements_by_tag_name nd_elements_by_class_name nd_elements_by_css_selector
4.1 Locating by Id
Use this when you know id attribute of an element. With this strategy, the rst 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, conside this page source:
<html> <body> <form id="loginForm"> <input name="username" type="text" />
13
<input name="password" type="password" /> <input name="continue" type="submit" value="Login" /> </form> </body> <html>
type="text" /> type="password" /> type="submit" value="Login" /> type="button" value="Clear" />
This will give the Login button as it occur before the Clear button:
continue = driver.find_element_by_name(continue)
14
type="text" /> type="password" /> type="submit" value="Login" /> type="button" value="Clear" />
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 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
15
16
CHAPTER
FIVE
17
18
CHAPTER
SIX
WEBDRIVER API
Note: This is not an ofcial documentation. Ofcial API documentation is available here. This chapter cover all the interfaces of Selenium WebDriver. 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 current loaded page. Usage:
driver.current_url
Here is an example for a method: close() Closes the current window. Usage:
driver.close()
6.1 Exceptions
module: selenium.common.exceptions class WebDriverException(msg=None, screen=None, stacktrace=None) base: Exception class ErrorInResponseException(response, msg) base: WebDriverException An error has occurred on the server side. This may happen when communicating with the refox extension or the remote driver server.
19
class InvalidSwitchToTargetException(msg=None, screen=None, stacktrace=None) base: WebDriverException The frame or window target to be switched doesnt exist. class NoSuchFrameException(msg=None, screen=None, stacktrace=None) base: InvalidSwitchToTargetException The frame target to be switched doesnt exist. class NoSuchWindowException(msg=None, screen=None, stacktrace=None) base: InvalidSwitchToTargetException The window target to be switched doesnt exist. class NoSuchElementException(msg=None, screen=None, stacktrace=None) base: WebDriverException The nd_element_by_* methods cant nd the element. class NoSuchAttributeException(msg=None, screen=None, stacktrace=None) base: WebDriverException class StaleElementReferenceException(msg=None, screen=None, stacktrace=None) base: WebDriverException Indicates that a reference to an element is now stale the element no longer appears on the DOM of the page. class InvalidElementStateException(msg=None, screen=None, stacktrace=None) base: WebDriverException class ElementNotVisibleException(msg=None, screen=None, stacktrace=None) base: InvalidElementStateException Thrown to indicate that although an element is present on the DOM, it is not visible, and so is not able to be interacted with. class ElementNotSelectableException(msg=None, screen=None, stacktrace=None) base: InvalidElementStateException class InvalidCookieDomainException(msg=None, screen=None, stacktrace=None) base: WebDriverException Thrown when attempting to add a cookie under a different domain than the current URL. class UnableToSetCookieException(msg=None, screen=None, stacktrace=None) base: WebDriverException Thrown when a driver fails to set a cookie. class RemoteDriverServerException(msg=None, screen=None, stacktrace=None) base: WebDriverException class TimeoutException(msg=None, screen=None, stacktrace=None) Thrown when a command does not complete in enough time.
20
21
move_to_element(to_element) Moving the mouse to the middle of an element. to_element: The element to move to. move_to_element_with_offset(to_element, xoffset, yoffset) Move the mouse by an offset of the speciced element. Offsets are relative to the top-left corner of the element. to_element: The element to move to. xoffset: X offset to move to. yoffset: Y offset to move to. release(on_element) Releasing a held mouse button. on_element: The element to mouse up. send_keys(*keys_to_send) Sends keys to current focused element. keys_to_send: The keys to send. send_keys_to_element(self, element, *keys_to_send): Sends keys to an element. element: The element to send keys. keys_to_send: The keys to send.
6.3 Alerts
module: selenium.webdriver.common.alert class Alert(driver) text() Gets the text of the Alert dismiss() Dismisses the alert available accept() Accepts the alert available send_keys(keysToSend) Send Keys to the Alert keysToSend: Any character.
22
HELP = uue002 BACK_SPACE = uue003 TAB = uue004 CLEAR = uue005 RETURN = uue006 ENTER = uue007 SHIFT = uue008 LEFT_SHIFT = uue008 # alias CONTROL = uue009 LEFT_CONTROL = uue009 # alias ALT = uue00a LEFT_ALT = uue00a # alias PAUSE = uue00b ESCAPE = uue00c SPACE = uue00d PAGE_UP = uue00e PAGE_DOWN = uue00f END = uue010 HOME = uue011 LEFT = uue012 ARROW_LEFT = uue012 # alias UP = uue013 ARROW_UP = uue013 # alias RIGHT = uue014 ARROW_RIGHT = uue014 # alias DOWN = uue015 ARROW_DOWN = uue015 # alias INSERT = uue016 DELETE = uue017 SEMICOLON = uue018 EQUALS = uue019 NUMPAD0 = uue01a # numbe pad keys NUMPAD1 = uue01b NUMPAD2 = uue01c NUMPAD3 = uue01d NUMPAD4 = uue01e
23
NUMPAD5 = uue01f NUMPAD6 = uue020 NUMPAD7 = uue021 NUMPAD8 = uue022 NUMPAD9 = uue023 MULTIPLY = uue024 ADD = uue025 SEPARATOR = uue026 SUBTRACT = uue027 DECIMAL = uue028 DIVIDE = uue029 F1 = uue031 # function keys F2 = uue032 F3 = uue033 F4 = uue034 F5 = uue035 F6 = uue036 F7 = uue037 F8 = uue038 F9 = uue039 F10 = uue03a F11 = uue03b F12 = uue03c META = uue03d COMMAND = uue03d
24
25
desired_capabilities: A dictionry with following keys: 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_prole: A selenium.webdriver.refox.refox_prole.FirefoxProle object. Only used if Firefox is requested. selenium.webdriver.remote.webdriver.create_web_element(element_id) Creates a web element with the specied element_id. selenium.webdriver.remote.webdriver.execute(driver_command, params=None) Sends a command to be executed by a command.CommandExecutor. 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 commands JSON response loaded into a dictionary object. selenium.webdriver.remote.webdriver.get(url) Loads a web page in the current browser session. selenium.webdriver.remote.webdriver.title Returns the title of the current page. selenium.webdriver.remote.webdriver.find_element_by_id(id_) Finds an element by id. id_: The id of the element to be found. Usage:
driver.find_element_by_id(foo)
selenium.webdriver.remote.webdriver.find_elements_by_id(id_) Finds multiple elements by id. id_: The id of the elements to be found. Usage:
driver.find_element_by_id(foo)
selenium.webdriver.remote.webdriver.find_element_by_xpath(xpath) Finds an element by xpath. xpath: The xpath locator of the element to nd. Usage:
driver.find_element_by_xpath(//div/td[1])
selenium.webdriver.remote.webdriver.find_elements_by_xpath(xpath) Finds multiple elements by xpath. xpath: The xpath locator of the elements to be found. Usage:
driver.find_elements_by_xpath("//div[contains(@class, foo)]")
26
selenium.webdriver.remote.webdriver.find_element_by_link_text(link_text) Finds an element by link text. link_text: The text of the element to be found. Usage:
driver.find_element_by_link_text(Sign In)
selenium.webdriver.remote.webdriver.find_elements_by_link_text(text) Finds elements by link text. link_text: The text of the elements to be found. Usage:
driver.find_elements_by_link_text(Sign In)
selenium.webdriver.remote.webdriver.find_element_by_partial_link_text(link_text) Finds an element by a partial match of its link text. link_text: The text of the element to partially match on. Usage:
driver.find_element_by_partial_link_text(Sign)
selenium.webdriver.remote.webdriver.find_elements_by_partial_link_text(link_text) Finds elements by a partial match of their link text. link_text: The text of the element to partial match on. Usage:
driver.find_element_by_partial_link_text(Sign)
selenium.webdriver.remote.webdriver.find_element_by_name(name) Finds an element by name. name: The name of the element to nd. Usage:
driver.find_element_by_name(foo)
selenium.webdriver.remote.webdriver.find_elements_by_name(name) Finds elements by name. name: The name of the elements to nd. Usage:
driver.find_elements_by_name(foo)
selenium.webdriver.remote.webdriver.find_element_by_tag_name(name) Finds an element by tag name. name: The tag name of the element to nd. Usage:
27
driver.find_element_by_tag_name(foo)
selenium.webdriver.remote.webdriver.find_elements_by_tag_name(name) Finds elements by tag name. name: The tag name the use when nding elements. Usage:
driver.find_elements_by_tag_name(foo)
selenium.webdriver.remote.webdriver.find_element_by_class_name(name) Finds an element by class name. name: The class name of the element to nd. Usage:
driver.find_element_by_class_name(foo)
selenium.webdriver.remote.webdriver.find_elements_by_class_name(name) Finds elements by class name. name: The class name of the elements to nd. Usage:
driver.find_elements_by_class_name(foo)
selenium.webdriver.remote.webdriver.find_element_by_css_selector(css_selector) Finds an element by css selector. css_selector: The css selector to use when nding elements. Usage:
driver.find_element_by_css_selector(#foo)
selenium.webdriver.remote.webdriver.find_elements_by_css_selector(css_selector) Finds elements by css selector. css_selector: The css selector to use when nding elements. Usage:
driver.find_element_by_css_selector(#foo)
selenium.webdriver.remote.webdriver.execute_async_script(script, *args) Asynchronously Executes JavaScript in the current window/frame. script: The JavaScript to execute. *args: Any applicable arguments for your JavaScript. Usage:
driver.execute_async_script(document.title)
28
selenium.webdriver.remote.webdriver.page_source Source code (HTML,CSS,JS etc.) of the current loaded page. Usage:
driver.page_source
selenium.webdriver.remote.webdriver.quit() Quits the driver and closes every associated window. Usage:
driver.quit()
selenium.webdriver.remote.webdriver.current_window_handle Usage:
driver.current_window_handle
selenium.webdriver.remote.webdriver.window_handles Returns the handles of all windows within the current session. Usage:
driver.window_handles
selenium.webdriver.remote.webdriver.switch_to_active_element() Returns the element with focus, or BODY if nothing has focus. Usage:
driver.switch_to_active_element()
selenium.webdriver.remote.webdriver.switch_to_window(window_name) Switches focus to the specied window. window_name: The name of the window to switch to. Usage:
driver.switch_to_window(main)
29
selenium.webdriver.remote.webdriver.switch_to_frame(index_or_name) Switches focus to the specied frame, by index or name. index_or_name: The name of the window to switch to, or an integer representing the index to switch to. Usage:
driver.switch_to_frame(frame_name) driver.switch_to_frame(1)
selenium.webdriver.remote.webdriver.get_cookies() Returns a set of dictionaries, corresponding to cookies visible in the current session. Usage:
driver.get_cookies()
selenium.webdriver.remote.webdriver.get_cookie(name) Get a single cookie by name. Returns the cookie if found, None if not. name: namd of the cookie Usage:
30
driver.get_cookie(my_cookie)
selenium.webdriver.remote.webdriver.add_cookie(cookie_dict) Adds a cookie to your current session. cookie_dict: A dictionary object, with the desired cookie name as the key, and the value being the desired contents. Usage:
driver.add_cookie({foo: bar,})
selenium.webdriver.remote.webdriver.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. time_to_wait: Amount of time to wait Usage:
driver.implicitly_wait(30)
selenium.webdriver.remote.webdriver.set_script_timeout(time_to_wait) Set the amount of time that the script should wait before throwing an error. time_to_wait: The amount of time to wait Usage:
driver.set_script_timeout(30)
selenium.webdriver.remote.webdriver.desired_capabilities returns the drivers current desired capabilities being used selenium.webdriver.remote.webdriver.get_screenshot_as_file(lename) Gets the screenshot of the current window. Returns False if there is any IOError, else returns True. Use full paths in your lename. lename: The full path you wish to save your screenshot to. Usage:
driver.get_screenshot_as_file(/Screenshots/foo.png)
31
selenium.webdriver.remote.webdriver.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()
6.8 WebElement
Generally, all interesting operations to do with interacting with a page will be performed through this WebElement interface. class selenium.webdriver.remote.webelement.WebElement(parent, id_) This class represents an HTML web element. parent The parent element of the current element id_ The Id of the current element tag_name Gets this elements tagName property. text Gets the text of the element. click() Clicks the element. submit() Submits a form. clear() Clears the text if its a text entry element. get_attribute(name) Gets the attribute value. is_selected(self ) Whether the element is selected. is_enabled() Whether the element is enabled. find_element_by_id(id_) Finds element by id. find_elements_by_id(id_) find_element_by_name(name) Find element by name. find_elements_by_name(name) find_element_by_link_text(link_text) Finds element by link text. find_elements_by_link_text(link_text)
32
find_element_by_partial_link_text(link_text) find_elements_by_partial_link_text(link_text) find_element_by_tag_name(name) find_elements_by_tag_name(name) find_element_by_xpath(xpath) Finds element by xpath. find_elements_by_xpath(xpath) Finds elements within the elements by xpath. find_element_by_class_name(name) Finds an element by their class name. find_elements_by_class_name(name) Finds elements by their class name. find_element_by_css_selector(css_selector) Find and return an element by CSS selector. find_elements_by_css_selector(css_selector) Find and return list of multiple elements by CSS selector. send_keys(*value) Simulates typing into the element. RenderedWebElement Items is_displayed() Whether the element would be visible to a user size() Returns the size of the element value_of_css_property(property_name) Returns the value of a CSS property location() Returns the location of the element in the renderable canvas parent() id() find_element(by=By.ID, value=None) It is reccommened to use find_element_by_* methods instead of this. find_elements(By.ID, value=None) It is reccommened to use find_elements_by_* methods instead of this.
6.8. WebElement
33
34
CHAPTER
SEVEN
You should see a chromedriver executable. Now you can 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 other documentation.
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.
35
Ref:
Another way to nd content type is using the requests module, you can use it like this:
import requests print requests.head(http://www.python.org).headers[content-type]
Once the content type is identied, you can browser.helperApps.neverAsk.saveToDisk Here is an example:
import os from selenium import webdriver fp = webdriver.FirefoxProfile()
use
it
to
set
the
refox
prole
preference:
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 les.
36
CHAPTER
EIGHT
REFERENCES
Ofcial API: http://selenium.googlecode.com/svn/trunk/docs/api/py/index.html Blog post explaining how to use headless X for running http://coreygoldberg.blogspot.com/2011/06/python-headless-selenium-webdriver.html Selenium tests:
37
38
Chapter 8. References
CHAPTER
NINE
GLOSSARY
39
40
Chapter 9. Glossary
CHAPTER
TEN
41
42
s
selenium.webdriver.remote.webdriver, ?? selenium.webdriver.remote.webelement, ??
43