You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NodeChromeDebug/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
38
38
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
39
39
40
40
```dockerfile
41
-
FROM selenium/node-chrome-debug:2.50.1
41
+
FROM selenium/node-chrome-debug:2.52.0
42
42
43
43
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
Copy file name to clipboardExpand all lines: NodeDebug/README.template.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
38
38
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
39
39
40
40
```dockerfile
41
-
FROM selenium/##BASE##-debug:2.50.1
41
+
FROM selenium/##BASE##-debug:2.52.0
42
42
43
43
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
Copy file name to clipboardExpand all lines: NodeFirefoxDebug/README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
38
38
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
39
39
40
40
```dockerfile
41
-
FROM selenium/node-firefox-debug:2.50.1
41
+
FROM selenium/node-firefox-debug:2.52.0
42
42
43
43
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
_Note:_`-v /e2e/uploads:/e2e/uploads`_is optional in case you are testing browser uploads on your web app you will probably need to share a directory for this._
@@ -112,10 +112,10 @@ _Note:_ `-v /e2e/uploads:/e2e/uploads` _is optional in case you are testing brow
112
112
This command line is the same as for Chrome. Remember that the Selenium running container is able to launch either Chrome or Firefox, the idea around having 2 separate containers, one for each browser is for convenience plus avoiding certain `:focus` issues your web app may encounter during end-to-end test automation.
113
113
114
114
```bash
115
-
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:2.50.1
115
+
$ docker run -d --name selenium-hub -p 4444:4444 selenium/hub:2.52.0
_Note: Since a Docker container is not meant to preserve state and spawning a new one takes less than 3 seconds you will likely want to remove containers after each end-to-end test with_`--rm`_command. You need to think of your Docker containers as single processes, not as running virtual machines, in case you are familiar with [Vagrant](https://www.vagrantup.com/)._
@@ -124,8 +124,8 @@ _Note: Since a Docker container is not meant to preserve state and spawning a ne
124
124
125
125
In the event you wish to visually see what the browser is doing you will want to run the `debug` variant of node or standalone images (substitute a free port that you wish to connect to on VNC for <port4VNC>; 5900 is fine if it is free, but of course you can only run one node on that port):
126
126
```bash
127
-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-chrome-debug:2.50.1
128
-
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-firefox-debug:2.50.1
127
+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-chrome-debug:2.52.0
128
+
$ docker run -d -P -p <port4VNC>:5900 --link selenium-hub:hub selenium/node-firefox-debug:2.52.0
129
129
```
130
130
e.g.:
131
131
```bash
@@ -137,15 +137,15 @@ to connect to the Chrome node on 5900 and the Firefox node on 5901 (assuming tho
137
137
138
138
And for standalone:
139
139
```bash
140
-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-chrome-debug:2.50.1
140
+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-chrome-debug:2.52.0
141
141
# OR
142
-
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-firefox-debug:2.50.1
142
+
$ docker run -d -p 4444:4444 -p <port4VNC>:5900 selenium/standalone-firefox-debug:2.52.0
143
143
```
144
144
or
145
145
```bash
146
-
$ docker run -d -p 4444:4444 -p 5900:5900 selenium/standalone-chrome-debug:2.50.1
146
+
$ docker run -d -p 4444:4444 -p 5900:5900 selenium/standalone-chrome-debug:2.52.0
147
147
# OR
148
-
$ docker run -d -p 4444:4444 -p 5901:5900 selenium/standalone-firefox-debug:2.50.1
148
+
$ docker run -d -p 4444:4444 -p 5901:5900 selenium/standalone-firefox-debug:2.52.0
149
149
```
150
150
151
151
You can acquire the port that the VNC server is exposed to by running:
@@ -163,8 +163,8 @@ If you are running [Boot2Docker](https://docs.docker.com/installation/mac/) on O
163
163
164
164
When you are prompted for the password it is `secret`. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a Docker image that derives from the posted ones which reconfigures it:
165
165
```dockerfile
166
-
#FROM selenium/node-chrome-debug:2.50.1
167
-
#FROM selenium/node-firefox-debug:2.50.1
166
+
#FROM selenium/node-chrome-debug:2.52.0
167
+
#FROM selenium/node-firefox-debug:2.52.0
168
168
#Choose the FROM statement that works for you.
169
169
170
170
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
@@ -176,11 +176,11 @@ RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
176
176
$ docker images
177
177
#=>
178
178
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
179
-
selenium/node-firefox 2.50.1 69f762d0d79e 29 minutes ago 552.1 MB
180
-
selenium/node-chrome 2.50.1 9dd73160660b 30 minutes ago 723.6 MB
181
-
selenium/node-base 2.50.1 1b7a0b7024b1 32 minutes ago 426.1 MB
182
-
selenium/hub 2.50.1 2570bbb98229 33 minutes ago 394.4 MB
183
-
selenium/base 2.50.1 33478d455dab 33 minutes ago 362.6 MB
179
+
selenium/node-firefox 2.52.0 69f762d0d79e 29 minutes ago 552.1 MB
180
+
selenium/node-chrome 2.52.0 9dd73160660b 30 minutes ago 723.6 MB
181
+
selenium/node-base 2.52.0 1b7a0b7024b1 32 minutes ago 426.1 MB
182
+
selenium/hub 2.52.0 2570bbb98229 33 minutes ago 394.4 MB
183
+
selenium/base 2.52.0 33478d455dab 33 minutes ago 362.6 MB
0 commit comments