├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── pint.json └── src ├── Concerns ├── ImpersonatesUsers.php ├── InteractsWithAuthentication.php ├── InteractsWithConsole.php ├── InteractsWithContainer.php ├── InteractsWithDatabase.php ├── InteractsWithExceptionHandling.php ├── InteractsWithPages.php ├── InteractsWithSession.php └── MakesHttpRequests.php ├── Constraints ├── FormFieldConstraint.php ├── HasElement.php ├── HasInElement.php ├── HasLink.php ├── HasSource.php ├── HasText.php ├── HasValue.php ├── IsChecked.php ├── IsSelected.php ├── PageConstraint.php └── ReversePageConstraint.php ├── HttpException.php ├── TestCase.php └── TestResponse.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/pint.json -------------------------------------------------------------------------------- /src/Concerns/ImpersonatesUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/ImpersonatesUsers.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/InteractsWithAuthentication.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithConsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/InteractsWithConsole.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/InteractsWithContainer.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/InteractsWithDatabase.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithExceptionHandling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/InteractsWithExceptionHandling.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/InteractsWithPages.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/InteractsWithSession.php -------------------------------------------------------------------------------- /src/Concerns/MakesHttpRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Concerns/MakesHttpRequests.php -------------------------------------------------------------------------------- /src/Constraints/FormFieldConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/FormFieldConstraint.php -------------------------------------------------------------------------------- /src/Constraints/HasElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/HasElement.php -------------------------------------------------------------------------------- /src/Constraints/HasInElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/HasInElement.php -------------------------------------------------------------------------------- /src/Constraints/HasLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/HasLink.php -------------------------------------------------------------------------------- /src/Constraints/HasSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/HasSource.php -------------------------------------------------------------------------------- /src/Constraints/HasText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/HasText.php -------------------------------------------------------------------------------- /src/Constraints/HasValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/HasValue.php -------------------------------------------------------------------------------- /src/Constraints/IsChecked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/IsChecked.php -------------------------------------------------------------------------------- /src/Constraints/IsSelected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/IsSelected.php -------------------------------------------------------------------------------- /src/Constraints/PageConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/PageConstraint.php -------------------------------------------------------------------------------- /src/Constraints/ReversePageConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/Constraints/ReversePageConstraint.php -------------------------------------------------------------------------------- /src/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/HttpException.php -------------------------------------------------------------------------------- /src/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/TestCase.php -------------------------------------------------------------------------------- /src/TestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/browser-kit-testing/HEAD/src/TestResponse.php --------------------------------------------------------------------------------