edysanchez / selenium-server
Composer distribution of Selenium Server Standalone, the browser automation framework.
Installs: 403
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 8
Type:libtary
pkg:composer/edysanchez/selenium-server
This package is not auto-updated.
Last update: 2025-11-04 09:13:51 UTC
README
This repository allows you to have the latest stable version of Selenium server integrated into your projects. Selenium server standalone is a browser automation framework. We will maintain the repository updated with the latest stable version of Selenium.
Instructions:
- Add the following line to your composer.json configuration file:
"emagister/selenium-server": "2.*". It should look like this:
{
"config": {
"bin-dir": "bin/"
},
"minimum-stability": "stable",
"require": {
"emagister/selenium-server": "2.*"
}
}
-
Execute the following command in the home directory of your project:
php composer.phar install -
And you're ready to go! Now you can launch the selenium server from the corresponding directory (in this case "bin"):
java -jar bin/selenium-server.jarChrome Driver:
add the following arguments when running the selenium server. -Dwebdriver.chrome.driver="bin/chromedriver" -browser "browserName=chrome,version=17"