Integrated
Integrated copied to clipboard
Simple, intuitive integration testing with PHPUnit.
Remove link to deleted tweet
Hi I have an issue when launch my first test ./vendor/bin/phpunit tests/ PHP Fatal error: Class 'PHPUnit_Framework_TestCase' not found in /Users/testIntuitive/vendor/laracasts/integrated/src/Extensions/Goutte.php on line 11 PHP Stack trace: what i do...
Hey, on trying to install the package, i receive the following composer error: > - Installation request for laracasts/integrated ^0.15.6 -> satisfiable by laracasts/integrated[0.15.6]. > - Conclusion: remove guzzlehttp/guzzle 6.5.5...
error
Warning: Declaration of Laracasts\Integrated\Extensions\Traits\LaravelTestCase::followRedirects() should be compatible with Illuminate\Foundation\Testing\TestCase::followRedirects($response)
/composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages. Problem 1 - Installation...
While running example according to [setup](https://github.com/laracasts/Integrated/wiki/Installation-and-Setup) getting this error. Any solution? `Fatal error: Access level to Laracasts\Integrated\Extensions\Traits\LaravelTestCase::get() must be public (as in class Illuminate\Foundation\Testing\TestCase) in D:\SoftProjects\CodeCuet\vendor\laracasts\integrated\src\Extensions\Laravel.php on line 9` `PHP...
Currently, the Selenium capabilities passed to the WebDriver are hardcoded to an empty array. I think users should be able to state that in `integrated.json`.
I've faced a situation when waitForElement() is practically useless, as the element to "intercept" is actually loaded inside an iframe. This is with Google's reCaptcha widget. ```php // ... ->andClick('recaptcha_box_1')...
Hi, let me show you two examples: 1. Laravel-way: ```php $this->visit('/') ->click('Login') ->seePageIs('/login'); ``` 2. Selenium: ```php $this->visit('/') ->clickCss('[href="http://mappanel.dev/login"]') // 1. Can't use just the ::click('link text') here... ->updateCurrentUrl() //...
Hello, I just installed the Integrated testing framework on Lumen, the install itself completed without fuss, but when I run my first test I get this error: > [Symfony\Component\Debug\Exception\FatalErrorException] >...