我制作了一个新的Laravel项目:
composer create-project laravel/laravel testing_laravel
composer require laravel/dusk --dev
php artisan serve
php artisan dusk
然后......
PHPUnit 6.3.1 by Sebastian Bergmann and contributors.
F 1 / 1 (100%)
Time: 1.12 seconds, Memory: 10.00MB
There was 1 failure:
1) Tests\Browser\ExampleTest::testBasicExample
Did not see expected text [Laravel] within element [body].
Failed asserting that false is true.
/Users/nobuhiroharada/work/laracast/testing_laravel/vendor/laravel/dusk/src/Concerns/MakesAssertions.php:274
/Users/nobuhiroharada/work/laracast/testing_laravel/vendor/laravel/dusk/src/Concerns/MakesAssertions.php:245
/Users/nobuhiroharada/work/laracast/testing_laravel/tests/Browser/ExampleTest.php:20
/Users/nobuhiroharada/work/laracast/testing_laravel/vendor/laravel/dusk/src/TestCase.php:92
/Users/nobuhiroharada/work/laracast/testing_laravel/tests/Browser/ExampleTest.php:21
FAILURES!
Tests: 1, Assertions: 1, Failures: 1.
Chrome浏览器没有推出。
我在localhost上使用macOS Sierra 10.12.1。
"laravel/framework": "5.5.*",
"laravel/dusk": "^2.0"
非常感谢你的帮助。
答案 0 :(得分:10)
我找到了解决方案。我没有配置端口。它位于.env
文件中:
APP_URL=http://127.0.0.1
↓
APP_URL=http://127.0.0.1:8000