Actually, I am trying to create new google profile in selenoid session and one of the ways that I found out is to use vnc to click some buttons that selenium can`t.
But when I am trying to get localhost:8080
the page doesn`t load.
So, what should I do?
Advertisement
Answer
You will have to link the selenoid and selenoid-ui containers.
JavaScript
x
6
1
$ docker run -d
2
--name selenoid-ui
3
--link selenoid
4
-p 8080:8080
5
aerokube/selenoid-ui --selenoid-uri=http://selenoid:4444
6
You have to download a browser image.
JavaScript
1
2
1
docker pull selenoid/firefox:88.0
2
Also, please make sure the browsers.json file is updated.
JavaScript
1
13
13
1
{
2
"firefox": {
3
"default": "57.0",
4
"versions": {
5
"57.0": {
6
"image": "selenoid/firefox:88.0",
7
"port": "4444",
8
"path": "/wd/hub"
9
}
10
}
11
}
12
}
13