@twiggy99999 take a look at this answer, I don't want to repeat what Bobby already said :)
But you can use Laravel Dusk
I have inherited a super legacy project that unfortunately I can't convert to Laravel due to time/budget constraints. It has zero tests so I've started adding in Unit tests using PHPUnit.
However, when it comes to acceptance/integration tests I'm wondering what the best approach would be? Most online guides for generic PHP push towards setting up a Selenium server but AFAIK Laravel doesn't use Selenium.
So my question is, has anyone managed to intergrate the Laravel acceptance testing outside of Laravel? I'd like to avoid the hassle of setting up Selenium and would also like access to things Laravel provides like $this->get('/'); if possible.
Please or to participate in this conversation.