Skip to main content

Python bindings for Selenium

Project description

Author:

David Burns

Selenium Python Client Driver is a Python language binding for Selenium Remote Control (version 1.0 and 2.0).

Currently the remote protocol, Firefox and Chrome for Selenium 2.0 are supported, as well as the Selenium 1.0 bindings. As work will progresses we’ll add more “native” drivers.

See here for more information.

Installing

Python Client

pip install -U selenium

Java Server

Download the server from http://selenium.googlecode.com/files/selenium-server-standalone-2.20.0.jar

java -jar selenium-server-standalone-2.20.0.jar

Example

from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
import time

browser = webdriver.Firefox() # Get local session of firefox
browser.get("http://www.yahoo.com") # Load page
assert "Yahoo!" in browser.title
elem = browser.find_element_by_name("p") # Find the query box
elem.send_keys("seleniumhq" + Keys.RETURN)
time.sleep(0.2) # Let the page load, will be added to the API
try:
    browser.find_element_by_xpath("//a[contains(@href,'http://seleniumhq.org')]")
except NoSuchElementException:
    assert 0, "can't find seleniumhq"
browser.close()

Documentation

Auto Generated API

Use The Source Luke!

http://code.google.com/p/selenium/source/browse/trunk/py/selenium/webdriver/remote/webdriver.py

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

selenium-2.20.0.tar.gz (4.2 MB view details)

Uploaded Source

File details

Details for the file selenium-2.20.0.tar.gz.

File metadata

  • Download URL: selenium-2.20.0.tar.gz
  • Upload date:
  • Size: 4.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for selenium-2.20.0.tar.gz
Algorithm Hash digest
SHA256 9808c5dfdd9f028d0361ba5a0ea717743849f4dee3eefc397a0b65e6cb3f06fd
MD5 a1a7d86758b1b0e8561cd4a341c860e5
BLAKE2b-256 592fcc5c809142f87184cd7be461b33100382ae266c9e8daffc889fdd3f8fdf7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page