正如标题所说,我已经完全安装了Laravel 5.4和最新的Homestead(1.0.1)。但是,当我运行一个简单的Dusk测试用例时,我收到以下错误:
无法连接到localhost端口9515:连接被拒绝
有谁知道如何处理这个?我尝试将端口更改为8888
之类的其他东西无济于事。
编辑:我已经能够深入挖掘并发现chromedriver
可执行文件实际上不可执行(chmod
)。现在我已经修复了当我手动尝试运行它时出现此错误。
./chromedriver:加载共享库时出错:libnss3.so:无法打开共享对象文件:没有这样的文件或目录
在Ubuntu Linux 16.04上,我得到了这个工作:
为无头测试安装Chromium和依赖项
sudo apt-get -y install chromium-browser xvfb gtk2-engines-pixbuf xfonts-cyrillic xfonts-100dpi xfonts-75dpi xfonts-base xfonts-scalable imagemagick x11-apps
创建customDuskCommand
使用这种handle
方法扩展了原始版本:
public function handle()
{
$xvfb = (new ProcessBuilder())
->setTimeout(null)
->setPrefix('/usr/bin/Xvfb')
->setArguments(['-ac', ':0', '-screen', '0', '1280x1024x16'])
->getProcess();
$xvfb->start();
try {
parent::handle();
} finally {
$xvfb->stop();
}
return;
}
这将在执行测试之前启动Xvfb进行无头测试,并在测试完成后停止该过程。
编辑:并确保vendor/laravel/dusk/bin/chromedriver-linux
是可执行的。
您的Chrome驱动程序安装似乎已损坏。
您可以尝试从头开始安装它
CHROME_DRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE`
wget -N http://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip -P ~/
unzip ~/chromedriver_linux64.zip -d ~/
rm ~/chromedriver_linux64.zip
sudo mv -f ~/chromedriver /usr/local/bin/chromedriver
sudo chown root:root /usr/local/bin/chromedriver
sudo chmod 0755 /usr/local/bin/chromedriver
使用最新的laravel / homestead box v.6.0.0,开箱即用
这应该可以帮助您下载最新版本的chrome驱动程序并正确解压缩。
LATEST_VERSION=$(curl -s https://chromedriver.storage.googleapis.com/LATEST_RELEASE) && wget -O /tmp/chromedriver.zip https://chromedriver.storage.googleapis.co /$LATEST_VERSION/chromedriver_linux64.zip && sudo unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/;
我今天遇到了这个问题,解决方案是在Laracasts.上
这是一份副本。
# makes sure all your repos are up to date
sudo apt-get update
# chrome dependencies I think
sudo apt-get -y install libxpm4 libxrender1 libgtk2.0-0 libnss3 libgconf-2-4
# chromium is what I had success with on Codeship, so seemed a good option
sudo apt-get install chromium-browser
# XVFB for headless applications
sudo apt-get -y install xvfb gtk2-engines-pixbuf
# fonts for the browser
sudo apt-get -y install xfonts-cyrillic xfonts-100dpi xfonts-75dpi xfonts-base xfonts-scalable
# support for screenshot capturing
sudo apt-get -y install imagemagick x11-apps
# Once all this has run through, you need to fire up xvfb on your homestead box. If you’re planning to # do this on a regular basis, you’ll want to get this setup on boot, but for the sake of testing things out:
Xvfb -ac :0 -screen 0 1280x1024x16 &
创建customDuskCommand
namespace App\Console\Commands;
use Symfony\Component\Process\Process;
class DuskCommand extends \Laravel\Dusk\Console\DuskCommand {
public function handle() {
$xvfb = (new Process(['/usr/bin/Xvfb', '-ac', ':0', '-screen', '0', '1280x1024x16']))
->setTimeout(null);
$xvfb->start();
try {
parent::handle();
} finally {
$xvfb->stop();
}
return;
}
}
感谢https://stackoverflow.com/a/44322930/470749。它已经过时但没有用,所以我提供了一个有效的更新答案。