如何使用 selenoid 访问 selenoid ui?

How to access selenoid ui using selenoid?

实际上,我正在尝试在 selenoid 会话中创建新的 google 配置文件,我发现的一种方法是使用 vnc 来点击一些 selenium 无法点击的按钮。

但是当我尝试获取 localhost:8080 时,页面无法加载。

那么,我该怎么办?

您将必须 link 硒化物和硒化物-ui 容器。

$ docker run -d         \
    --name selenoid-ui  \
    --link selenoid     \ 
    -p 8080:8080        \
    aerokube/selenoid-ui --selenoid-uri=http://selenoid:4444 

您必须下载浏览器图像。

docker pull selenoid/firefox:88.0

此外,请确保 browsers.json 文件已更新。

{
    "firefox": {
        "default": "57.0",
        "versions": {
            "57.0": {
                "image": "selenoid/firefox:88.0",
                "port": "4444",
                "path": "/wd/hub"
            }
        }
    }
}