├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml └── tests ├── GitHubTest.php ├── bootstrap.php └── support ├── WebDriverAssertions.php └── WebDriverDevelop.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .idea/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/GitHubTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/tests/GitHubTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/support/WebDriverAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/tests/support/WebDriverAssertions.php -------------------------------------------------------------------------------- /tests/support/WebDriverDevelop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavertMik/php-webdriver-demo/HEAD/tests/support/WebDriverDevelop.php --------------------------------------------------------------------------------