Skip to main content

Python bindings for Selenium

Project description

Author:

Miki Tebeka <miki@saucelabs.com>

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.0b3.jar

java -jar selenium-server-standalone-2.0b3.jar

Example

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

browser = webdriver.Firefox() # Get local session of firefox
browser.get("http://www.yahoo.com") # Load page
assert browser.title == "Yahoo!"
elem = browser.find_element_by_name("p") # Find the query box
elem.send_keys("selenium" + 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

Coming soon, in the meantime - “Use the source Luke”

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.0b3dev.tar.gz (1.3 MB view details)

Uploaded Source

File details

Details for the file selenium-2.0b3dev.tar.gz.

File metadata

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

File hashes

Hashes for selenium-2.0b3dev.tar.gz
Algorithm Hash digest
SHA256 cc671ce880ae3d7ebaaeed68781c775e8d037d82f46db25635ba09c9c5b182d7
MD5 7cfa656bd75974c29779f0b4aaa29db1
BLAKE2b-256 66ca2a09b045baca3e176bb3af6ac4704c9b5747dd383c4a4a48bc52c5dbe929

See more details on using hashes here.

Supported by

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