Open hatamiarash7 opened 5 years ago
The command php artisan selenium:make:test create a class without a namespace.
php artisan selenium:make:test
so we can't run vendor/bin/steward run staging chrome
vendor/bin/steward run staging chrome
The output class should has a Tests namespace
Tests
<?php namespace Tests; use Modelizer\Selenium\SeleniumTestCase; class SeleniumExampleTest extends SeleniumTestCase { ... }
Please feel free to raise PR and update the test cases if needed.
The command
php artisan selenium:make:test
create a class without a namespace.so we can't run
vendor/bin/steward run staging chrome
The output class should has a
Tests
namespace