无法打开仪表板

时间:2019-02-28 09:39:10

标签: windows docker zalenium

我正在使用Windows,并使用。\ prepare.bat

安装了Zalenium

然后,当我尝试使用以下方式启动Zalenium时:

docker run --rm -ti --name zalenium -p 4444:4444 
-v /var/run/docker.sock:/var/run/docker.sock 
-v /tmp/videos:/home/seluser/videos 
--privileged dosel/zalenium start

我在控制台上收到一个错误: 正在复制仪表板文件...

cp: cannot create regular file '/home/seluser/videos/dashboard.html': No such file or directory

除仪表板外,其他所有功能均可用。 我究竟做错了什么? 我正在使用最新版本。 谢谢

3 个答案:

答案 0 :(得分:0)

我是Zalenium的新手,但我发现Zalenium Github页面上的run命令并非在所有系统上都有效。

尝试一下我使用的命令,让我知道它是否适用

Content-Type: multipart/form-data;

答案 1 :(得分:0)

错误清楚地表明,它正在尝试在 LINUX中查找文件,如结构“ / home / seluser / videos /” ,该文件在Windows上不可用。

启动zalenium时,它将在安装驱动器中查找 dashboard.html 。没有此文件,仪表板将不可见

如果是Windows,则应使用以下命令。

 docker run --rm -ti --name zalenium -p 4444:4444 ^
      -v /var/run/docker.sock:/var/run/docker.sock ^
      -v /c/Users/your_user_name/temp/videos:/home/seluser/videos ^
      --privileged dosel/zalenium start

Zalenium documentation

答案 2 :(得分:0)

docker run -d -ti --name zalenium -p 4445:4444 -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/videos:/home/seluser/videos --restart=always --privileged dosel/zalenium start

为我工作..仪表板在 4445 端口上打开