-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working with laravel 8 #89
Comments
Solution for that was quitely easy, you just need to change class To do that, overwrite KernelDriver class using composer. In composer add this:
And create file
It will works then fine :) |
I've created Pull Request #90 for that.
and dev-require |
In the "require-dev" section of composer.json I found that I also needed to add the following: "friends-of-behat/mink-browserkit-driver": "dev-master as 1.3.4", |
Yes, but you dont need to do that If you are not using mink :) |
This worked great, until I went to deploy this code to a non-local/testing environment. All my
Which points to: use Behat\Mink\Driver\BrowserKitDriver; So, if you have all of your "autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"behat-overwrite/KernelDriver.php"
]
}, Basically, add |
@TimothyDLewis @MWL91 @Evoke-PHP @JeffreyWay in order to bring support for Behat as an option to write acceptance test in laravel I have created a new repository / behat-extension. Do you know anyone interested in supporting / helping / maintaining with me this component? The library its already updated but i just give support from PHP 8.0 It's a private repository at the moment, but if someone wants access I can give you access |
Make it public 😉 |
@MWL91 Its already public 😄 Laravel Behat Extension and available from Packagist |
This is not working with new version of Laravel.
Also behat/mink-extension doesn't work with new symfony kernel.
I found solution for that, and used friends-of-behat/symfony-extension, but then this library returns me with
How can I resolve this problem?
The text was updated successfully, but these errors were encountered: