2017-11-01 11 views
0

夕暮れの問題 私の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> 

をダンプしますか?

ありがとうございます。

答えて

1

他のものにhttp://localhost:9515を更新しないでください。これはセレンドライバで、デフォルトではこのポートを使用しているため、問題なく動作します。デフォルトでは

ランニング:

$browser->visit('/') 

それは、他に変更を加えることなく、あなたのページのメインURLを訪問するべきです。ただし、アプリケーションによっては、特にアプリケーションでドメインチェックが行われたときに、.envファイルにAPP_URLを設定する必要があります。

+0

私はそれを取得しません。 – ichimaru

関連する問題