Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minkphp/minkbundle
Mink library integration bundle for Symfony2
https://github.com/minkphp/minkbundle
mink php symfony symfony-bundle
Last synced: 3 months ago
JSON representation
Mink library integration bundle for Symfony2
- Host: GitHub
- URL: https://github.com/minkphp/minkbundle
- Owner: minkphp
- License: mit
- Archived: true
- Created: 2011-04-21T00:00:22.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-02-19T13:06:36.000Z (almost 9 years ago)
- Last Synced: 2024-09-29T16:21:41.939Z (3 months ago)
- Topics: mink, php, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 147 KB
- Stars: 60
- Watchers: 7
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MinkBundle
[![Build Status](https://travis-ci.org/minkphp/MinkBundle.svg)](https://travis-ci.org/minkphp/MinkBundle)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/minkphp/MinkBundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/minkphp/MinkBundle/?branch=master)
[![Latest Stable Version](https://poser.pugx.org/behat/mink-bundle/version.svg)](https://packagist.org/packages/behat/mink-bundle)
[![Latest Unstable Version](https://poser.pugx.org/behat/mink-bundle/v/unstable.svg)](//packagist.org/packages/behat/mink-bundle)
[![Total Downloads](https://poser.pugx.org/behat/mink-bundle/downloads.svg)](https://packagist.org/packages/behat/mink-bundle)
[![License](https://poser.pugx.org/behat/mink-bundle/license.svg)](https://packagist.org/packages/behat/mink-bundle)Provides Behat\Mink browser abstraction library for PHPUnit in Symfony2 project.
## Features
- Symfony2 test.client browser emulator
- Goutte browser emulator
- Zombie (JS testing) browser emulator - Have a bug
- Selenium2 (WebDriver) browser emulator
- Selenium (JS testing) browser emulator
- Sahi (JS testing) browser emulator## Configuration
config_test.yml
```yaml
mink:
base_url: 'http://localhost'
browser_name: firefox
goutte: ~ # optional
sahi: ~ # optional
zombie: ~ # optional
selenium: ~ # optional
selenium2: ~ # optional```
All options can be overwrited in parameters.yml
```yaml
mink.base_url: 'http://myhost.com'
mink.browser_name: 'chrome'
```## Documentation
- [Installation](Resources/doc/index.rst)
- [Code coverage](Resources/doc/coverage.rst)
- [Mink Documentation](http://mink.behat.org)
- [PHPUnit Documentation](http://www.phpunit.de/manual/current/en/index.html)