Download the PHP package peridot-php/webdriver-manager without Composer

On this page you can find all versions of the php package peridot-php/webdriver-manager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package webdriver-manager

WebDriver Manager

Build Status Scrutinizer Code Quality

The perfect companion for projects with functional tests. Heavily inspired by the webdriver-manager that ships with protractor. WebDriver Manager allows you to keep Selenium Server binaries up to date. It also provides a packaged solution for easily starting Selenium Server.

In addition to an easy to use command line application, WebDriver Manager provides a library for managing Selenium binaries in your own apps and tools.

Installation

WebDriver Manager is meant to be a drop in installation for any project using Selenium WebDriver for functional tests.

Once installed, you can operate Selenium Server from the comfort of your project:

Usage

WebDriver Manager Usage

clean

Remove all installed binaries.

WebDriver clean command

status

List all available binaries and their installed status. Status shows if the binary is installed, out of date, or missing.

WebDriver status command

update

The update command downloads current binaries and deletes old ones.

WebDriver update command

start

Starts Selnium Server with all drivers managed by WebDriver Manager. The start command will run an update at start to make sure drivers are available and up to date.

WebDriver start command

Library Usage

WebDriver manager exposes a really simple interface that makes it easy to leverage in your own applications and tools:

A note on starting Selenium in the background

WebDriver Manager does not block when starting a background process. This makes it difficult to see if Selenium encountered any errors (perhaps a corrupt binary?). The SeleniumProcess class provides a method for checking the status of the process. If you want to check that Selenium Server started in the background ok, you might try something like this:

For more information, see the API docs;

Examples

The API has been used to create a custom Behat listener capable of starting the server before Mink tests are run. This tool is included as part of a demo project known as behavior driven todos.

Running Tests

WebDriver Manager's tests were written using the Peridot test framework.

Unit tests can be run like so:

And integration tests can be run like this:

Contributing

Please feel free to open issues or pull requests.


All versions of webdriver-manager with dependencies

PHP Build Version
Package Version
Requires php Version >=5.4.0
evenement/evenement Version ~2.0
symfony/console Version ~2.6
splitbrain/php-archive Version ~1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package peridot-php/webdriver-manager contains the following files

Loading the files please wait ....