Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thetodd/symfony-selenium
A new project skeleton for symfony testing with selenium
https://github.com/thetodd/symfony-selenium
phpunit selenium selenium-webdriver symfony symfony-skeleton symfony4 testing webdriver
Last synced: about 2 months ago
JSON representation
A new project skeleton for symfony testing with selenium
- Host: GitHub
- URL: https://github.com/thetodd/symfony-selenium
- Owner: thetodd
- Created: 2018-02-22T12:03:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-22T12:18:09.000Z (almost 7 years ago)
- Last Synced: 2024-11-15T04:06:47.131Z (2 months ago)
- Topics: phpunit, selenium, selenium-webdriver, symfony, symfony-skeleton, symfony4, testing, webdriver
- Language: PHP
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Symfony 4 skeleton with selenium testing
This is a skeleton for the Symfony 4 framework which can be tested by selenium und php-webdriver.
### Create a project from skeleton
```bash
composer create-project thetodd/symfony-selenium myappname
```### Test the app
```bash
cd myappname
docker-compose up -d
docker-compose exec webapp /var/www/app/bin/phpunit -c /var/www/app/phpunit.xml.dist
```The tests are under the `tests` directory. For functional testing with selenium use `App\Tests\Functional\FunctionalTestcase`
as base php class.### Running the app
If you run docker-compose the app will automatically be available in your browser at `http://localhost/`.