Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
This package has been abandoned. Use php-webdriver/webdriver instead.
Generated on May 10, 2024 via composer

facebook/webdriver 1.7.1

A PHP client for Selenium WebDriver
Package summary
Share
1
issue
1
high severity
meta
1
2
licenses
2
MIT
1
Apache-2.0
Package created
28 Jul 2013
Version published
13 Jun 2019
Maintainers
3
Total deps
3
Direct deps
1
License
Apache-2.0

Issues

1

1 high severity issue

high
via: facebook/webdriver@1.7.1
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
symfony/polyfill-php80@v1.29.0
symfony/process@v4.4.44

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
facebook/webdriver@1.7.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

1
All Dependencies CSV
β“˜ This is a list of facebook/webdriver 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
symfony/processv4.4.44-MIT
prod

Visualizations

Frequently Asked Questions

What does facebook/webdriver do?

The Facebook/WebDriver is a PHP client for Selenium WebDriver, which is a tool designed to automate web browsers. This action is particularly useful for various automated testing of real web applications in a real browser.

How do you use facebook/webdriver?

If you're looking to use Facebook/WebDriver, the first step is to install it. Installation is possible through Composer; a package manager that streamlines the process. If you haven't used Composer before, you can download the composer.phar binary with the following command:

curl -sS https://getcomposer.org/installer | php

Next, you can install the Facebook/WebDriver library with this command:

php composer.phar require facebook/webdriver

Once you have started the Selenium Server, you can create a new instance of a browser session. The session must include the URL of your running server. For example, to launch Chrome, you would write:

$host = 'http://localhost:4444/wd/hub'; // this is the default
$driver = RemoteWebDriver::create($host, DesiredCapabilities::chrome());

Or for Firefox, you would write:

$driver = RemoteWebDriver::create($host, DesiredCapabilities::firefox());

Please remember that your code must have the latest versions of the browsers and their respective drivers (Chromedriver for Google Chrome and Geckodriver for Firefox) installed.

Where are the facebook/webdriver docs?

For in-depth information, some how-tos, and all-encompassing documentation on the Facebook/WebDriver, you're best off visiting the official documentation page. Besides the official documentation, you can also find a wealth of knowledge in the Selenium documentation and Selenium's GitHub wiki.