selenium 2.0dev3
pip install selenium==2.0dev3
Released:
Python bindings for Selenium
Navigation
Verified details
These details have been verified by PyPIMaintainers
π Avatar for Corey.Goldberg from gravatar.comCorey.Goldberg π Avatar for David.Burns from gravatar.com
David.Burns π Avatar for diemol from gravatar.com
diemol π Avatar for pujagani from gravatar.com
pujagani π Avatar for titusfortner from gravatar.com
titusfortner
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (UNKNOWN)
- Author: UNKNOWN
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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.0a4.jar
java -jar selenium-server-standalone-2.0a4.jar
Example
from selenium.remote import connect
from selenium import FIREFOX
from selenium.common.exceptions import NoSuchElementException
from time import sleep
browser = connect(FIREFOX) # Get local session of firefox
browser.get("http://www.yahoo.com") # Load page
assert browser.get_title() == "Yahoo!"
elem = browser.find_element_by_name("p") # Find the query box
elem.send_keys("selenium\n")
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
Verified details
These details have been verified by PyPIMaintainers
π Avatar for Corey.Goldberg from gravatar.comCorey.Goldberg π Avatar for David.Burns from gravatar.com
David.Burns π Avatar for diemol from gravatar.com
diemol π Avatar for pujagani from gravatar.com
pujagani π Avatar for titusfortner from gravatar.com
titusfortner
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (UNKNOWN)
- Author: UNKNOWN
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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
File details
Details for the file selenium-2.0dev3.tar.gz.
File metadata
- Download URL: selenium-2.0dev3.tar.gz
- Upload date:
- Size: 617.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9c902eeceda6a2c2efd68e5b9d84f990370e607d2b13334f1eb0af857d6ab1c
|
|
| MD5 |
d08578170baf91395fa9c7ae81568a70
|
|
| BLAKE2b-256 |
3d2f48b1dd6129b7b3e5d1be6abf32220ffebe2bd5eb904da31ef889b61e10e6
|
