夕暮れの問題 私のMacにカスタムURLを付けたバゲッジボックスを実行しています。私はDuskTestCase.php
を編集し、http://localhost:9515
を$this->local
= http://mysite.dev
に置き換えなければならなかった。エラー次 $php artisan dusk tests/Browser/LoginTest.php
出力:私は$this->local
= http://www.google.com:80
と$browser->visit('/')->dump();
を交換するとき、それはGoogleのページの内容をダンプしますLaravel夕暮れのぼかしボックスDesiredCapabilities :: __ construct()
Tests\Browser\LoginTest::testLogin
TypeError: Argument 1 passed to Facebook\WebDriver\Remote\DesiredCapabilities::__construct() must be of the type array, null given, called in /Users/gmylonas/Vagrant Projects/mywebsite/vendor/facebook/webdriver/lib/Remote/RemoteWebDriver.php on line 127
/Users/gmylonas/Vagrant Projects/mywebsite/vendor/facebook/webdriver/lib/Remote/DesiredCapabilities.php:33
/Users/gmylonas/Vagrant Projects/mywebsite/vendor/facebook/webdriver/lib/Remote/RemoteWebDriver.php:127
/Users/gmylonas/Vagrant Projects/mywebsite/tests/DuskTestCase.php:46
/Users/gmylonas/Vagrant Projects/mywebsite/vendor/laravel/dusk/src/TestCase.php:210
/Users/gmylonas/Vagrant Projects/mywebsite/vendor/laravel/framework/src/Illuminate/Support/helpers.php:762
/Users/gmylonas/Vagrant Projects/mywebsite/vendor/laravel/dusk/src/TestCase.php:211
/Users/gmylonas/Vagrant Projects/mywebsite/vendor/laravel/dusk/src/TestCase.php:117
/Users/gmylonas/Vagrant Projects/mywebsite/vendor/laravel/dusk/src/TestCase.php:89
/Users/gmylonas/Vagrant Projects/mywebsite/tests/Browser/LoginTest.php:23
!質問:なぜそれは私のボックスのURL上では動作しませんし、それを解決する方法を $this->local
= http://localhost:9515
は、空のページ
<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html>
をダンプしますか?
ありがとうございます。
私はそれを取得しません。 – ichimaru