Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msabramo/collective.recipe.seleniumrc
zc.buildout recipe for installing the Selenium RC distribution.
https://github.com/msabramo/collective.recipe.seleniumrc
Last synced: 28 days ago
JSON representation
zc.buildout recipe for installing the Selenium RC distribution.
- Host: GitHub
- URL: https://github.com/msabramo/collective.recipe.seleniumrc
- Owner: msabramo
- Created: 2011-06-13T23:37:22.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-06-14T05:13:57.000Z (over 13 years ago)
- Last Synced: 2024-05-09T20:45:50.915Z (8 months ago)
- Language: Python
- Homepage: http://pypi.python.org/pypi/collective.recipe.seleniumrc/
- Size: 102 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
Awesome Lists containing this project
README
*******************************
Download recipe for Selenium RC
*******************************This package downloads and installs Selenium RC using zc.buildout. It is based
on hexagonit.recipe.download.buildout.cfg example::
[buildout]
parts = seleniumrc[seleniumrc]
recipe = collective.recipe.seleniumrcA control script will be created based on the part name. In this case a
control script will be created in bin/seleniumrcYou may also be interested in the selenium module for Python which allows you
to control Selenium RC.http://pypi.python.org/pypi/selenium
You can also choose the exact version of Selenium RC to be used::
[buildout]
parts = seleniumrc[seleniumrc]
recipe = collective.recipe.seleniumrc
url = http://selenium.googlecode.com/files/selenium-remote-control-1.0.3.zip
md5sum = 8935cc7fe4dde2fd2a95ddd818e7493bSometimes you may want to use another Java executable::
[buildout]
parts = seleniumrc[seleniumrc]
recipe = collective.recipe.seleniumrc
java-cmd = /home/www/java/bin/javaTo suppress all default values (e.g., to install without verifying the MD5
checksum), use the 'no-defaults' option::[buildout]
parts = seleniumrc[seleniumrc]
recipe = collective.recipe.seleniumrc
url = http://selenium.googlecode.com/files/selenium-remote-control-1.0.3.zip
java-cmd = /home/www/java/bin/javaLicense
-------Open Source License - Zope Public License v2.1