docker部署chrome浏览器调试用
docker run --rm -itd \
-p 4444:4444 \
-p 4445:5900 \
-p 4446:7900 \
-e SE_VNC_NO_PASSWORD=true \
--shm-size 2g \
selenium/standalone-chromium:latest
端口
# 默认密码:secret
# 省略密码
SE_VNC_NO_PASSWORD=true
# WebDriver tests 调试调用端口
http://localhost:4444
# VNC端口 5900
# 查看浏览器动作 NoVNC
http://localhost:7900/?autoconnect=1&resize=scale&password=secret
参考资料:
https://github.com/SeleniumHQ/docker-selenium
License:
CC BY 4.0