phpunit-mink
phpunit-mink copied to clipboard
Library for using Mink in PHPUnit tests. Supports session sharing between tests in a test case.
TravisCI does not provide a free plan for open-source anymore.
Just trying to run my phpunit tests through Mink and Zombie driver. Here is my config ``` php array( 'driver' => 'zombie', // Defaults for this driver 'port' => 8124,...
PHPUnit 6 release changed `PHPUnit_Framework_TestCase` class into `\PHPUnit\Framework\TestCase` and therefore any `extends PHPUnit_Framework_TestCase` in this project now fails with this error: ``` PHP Fatal error: Class 'PHPUnit_Framework_TestCase' not found in...
Can we change coding standards to be PSR-2 compatible?
It seems I have to do a ```PHP putenv('PHPUNIT_MINK_TUNNEL_ID=' . $tunnel_id); ``` before creating my browser configuration which feels a little bit weird for me.
Hi, I work with PHP7 and PHPUnit >5 . This is my composer.json : "phpunit/phpunit": "~5.4", "behat/mink": "^1.7", "behat/mink-goutte-driver": "^1.2", "behat/mink-selenium2-driver": "^1.3", "aik099/phpunit-mink": "~2.0", "behat/mink-extension": "*" This is my test...
Hello, Based on the discussion in #74 I tried to make it work. It works for me so far, but I only tested taking screenshots and getStatusCode(). But as I...
Would be nice to be able to use this together with PhantomJs.
I've got an e-mail from ReadTheDocs today, that all readthedocs.org sub-domains now should be readthedocs.io sub-domain. They will redirect automatically, but we need to fix links by ourselves anyway.
Include "@throws" in "createDriver" method of driver factories, because otherwise there would be a CS violation. Probably CS was changed a bit since original code was written.