anteris-dev / selenium-server
There is no license information available for the latest version (v1.1.0) of this package.
A Selenium server that can be stopped / started with PHP.
v1.1.0
2020-10-12 16:28 UTC
Requires
- anteris-dev/os-helper: dev-master
- guzzlehttp/guzzle: ^7.0
- php-webdriver/webdriver: ^1.8
- symfony/console: ^5.1
- symfony/process: ^5.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
This package is auto-updated.
Last update: 2024-10-13 01:27:35 UTC
README
This package provides you with a Selenium server ready to run on Linux, Mac OS, or Windows.
To Install
composer require anteris-dev/selenium-server
Next you will want to install a Selenium driver.
# To install Gecko Driver ./vendor/bin/selenium install:gecko # To install Chrome Driver ./vendor/bin/selenium install:chrome # To install both ./vendor/bin/selenium install
To Run the Server
./vendor/bin/selenium serve
To modify the driver used, pass the --driver method to the command. Supported drivers are listed below.
- Gecko (Firefox)
- Chrome (Chromium)
# Start a Firefox instance ./vendor/bin/selenium serve --driver gecko # Start a Chromium instance ./vendor/bin/selenium serve --driver chrome