Project

selenium

0.04
No release in over 3 years
Low commit activity in last 3 years
Gem wrapper for selenium server.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Selenium -- Gem wrapper for selenium server

Installing Selenium

$ gem install selenium

Usage

selenium install - installs selenium
selenium         -  runs the selenium server 

Note

If you are on OSX, you have better option with homebrew help:

brew install selenium-server-standalone

Standalone selenium server is implemented as launchd agent.

To have launchd start selenium-server-standalone at login, create soft link:

ln -sfv /usr/local/opt/selenium-server-standalone/*.plist ~/Library/LaunchAgents

Then load selenium-server-standalone agent:

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.selenium-server-standalone.plist

It will run selenium server on port 4444.

If you don't want to use agent, use java directly:

java -jar /usr/local/opt/selenium-server-standalone/selenium-server-standalone-2.35.0.jar -p 4444