Lines Matching +full:call +full:- +full:test +full:- +full:workflow

1 # php-webdriver – Selenium WebDriver bindings for PHP
3 …g.shields.io/packagist/v/php-webdriver/webdriver.svg?style=flat-square&label=Packagist)](https://p…
4 ….io/github/workflow/status/php-webdriver/php-webdriver/Tests?style=flat-square&label=GitHub%20Acti…
5test status](https://img.shields.io/github/workflow/status/php-webdriver/php-webdriver/Sauce%20Lab…
6 ….shields.io/packagist/dd/php-webdriver/webdriver.svg?style=flat-square&label=Downloads)](https://p…
9 Php-webdriver library is PHP language binding for Selenium WebDriver, which allows you to control w…
14 implements **experimental support** of [W3C WebDriver](https://w3c.github.io/webdriver/webdriver-sp…
15 The W3C WebDriver support is not yet full-featured, however it should allow to control Firefox via …
27 curl -sS https://getcomposer.org/installer | php
31 php composer.phar require php-webdriver/webdriver
35 Starting from version 1.8.0, the project has been renamed from `facebook/php-webdriver` to `php-web…
41 - "facebook/webdriver": "(version you use)",
42 + "php-webdriver/webdriver": "(version you use)",
55 …andalone server, but for local development, you can send them directly to so-called "browser drive…
59 … for [more information on Chrome/Chromedriver](https://github.com/php-webdriver/php-webdriver/wiki…
67 chromedriver --port=4444
72 … for [more information on Firefox/Geckodriver](https://github.com/php-webdriver/php-webdriver/wiki…
93 …rther Selenium server information](https://github.com/php-webdriver/php-webdriver/wiki/Selenium-se…
98 …d also be started inside Docker container - see [docker-selenium project](https://github.com/Selen…
107 // Chromedriver (if started using --port=4444 as above)
111 // selenium-server-standalone-#.jar (version 2.x or 3.x)
113 // selenium-server-standalone-#.jar (version 4.x)
143 $desiredCapabilities->setCapability('acceptSslCerts', false);
147 $firefoxOptions->addArguments(['-headless']);
148 $desiredCapabilities->setCapability(FirefoxOptions::CAPABILITY, $firefoxOptions);
153 … [�� configure a proxy server](https://github.com/php-webdriver/php-webdriver/wiki/HowTo-Work-with
155 To configure browser-specific capabilities, you may use [�� ChromeOptions](https://github.com/php-w…
156 or [�� FirefoxOptions](https://github.com/php-webdriver/php-webdriver/wiki/Firefox#firefoxoptions).
164 $driver->get('https://en.wikipedia.org/wiki/Selenium_(software)');
167 $driver->findElement(WebDriverBy::id('searchInput')) // find search input element
168 ->sendKeys('PHP') // fill the search box
169 ->submit(); // submit the whole form
172 $historyButton = $driver->findElement(
173 WebDriverBy::cssSelector('#ca-history a')
176 echo 'About to click to a button with text: ' . $historyButton->getText();
179 $historyButton->click();
181 // Make sure to always call quit() at the end to terminate the browser session
182 $driver->quit();
186 …our GitHub wiki for [�� php-webdriver command reference](https://github.com/php-webdriver/php-webd…
188 **NOTE:** Above snippets are not intended to be a working example by simply copy-pasting. See [exam…
197 How-tos are provided right here in [�� our GitHub wiki](https://github.com/php-webdriver/php-webdri…
199 …don't use IDE, you may use [API documentation of php-webdriver](https://php-webdriver.github.io/ph…
205 To take advantage of automatized testing you may want to integrate php-webdriver to your testing fr…
208 - [Symfony Panther](https://github.com/symfony/panther) uses php-webdriver and integrates with PHPU…
209 - [Laravel Dusk](https://laravel.com/docs/dusk) is another project using php-webdriver, could be us…
210 - [Steward](https://github.com/lmc-eu/steward) integrates php-webdriver directly to [PHPUnit](https…
211 - [Codeception](http://codeception.com) testing framework provides BDD-layer on top of php-webdrive…
212 - You can also check out this [blogpost](http://codeception.com/11-12-2013/working-with-phpunit-and
218 …me general feedback**? Visit our [Discussions](https://github.com/php-webdriver/php-webdriver/disc…
219 …estions also on StackOverflow](https://stackoverflow.com/questions/tagged/php+selenium-webdriver)).
221 …you want to **report a bug**? [Submit it here](https://github.com/php-webdriver/php-webdriver/issu…
223 �� Looking for a **how-to** or **reference documentation**? See [our wiki](https://github.com/php-w…
227 …lp to make php-webdriver better. See [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more informati…
229-webdriver is community project - if you want to join the effort with maintaining and developing t…