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

This package is auto-updated.

Last update: 2024-04-13 00:30:35 UTC


README

Check & fix styling

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