|
| 1 | +[node] |
| 2 | +session-timeout = 30 |
1 | 3 | [docker]
|
2 | 4 | # Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
|
3 | 5 | # start a container with the given image.
|
4 | 6 | configs = [
|
5 | 7 | "selenium/standalone-firefox:4.0.0-beta-3-20210426", "{\"browserName\": \"firefox\"}",
|
6 | 8 | "selenium/standalone-chrome:4.0.0-beta-3-20210426", "{\"browserName\": \"chrome\"}",
|
7 |
| - "selenium/standalone-opera:4.0.0-beta-3-20210426", "{\"browserName\": \"operablink\"}" |
| 9 | + "selenium/standalone-opera:4.0.0-beta-3-20210426", "{\"browserName\": \"opera\"}", |
| 10 | + "selenium/standalone-edge:4.0.0-beta-3-20210426", "{\"browserName\": \"MicrosoftEdge\"}" |
8 | 11 | ]
|
9 | 12 |
|
10 | 13 | # URL for connecting to the docker daemon
|
11 | 14 | # host.docker.internal works for macOS and Windows.
|
12 | 15 | # Linux could use --net=host in the `docker run` instruction or 172.17.0.1 in the URI below.
|
13 | 16 | # To have Docker listening through tcp on macOS, install socat and run the following command
|
14 | 17 | # socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
|
15 |
| -host = "tcp://host.docker.internal:2375" |
| 18 | +url = "http://host.docker.internal:2375" |
| 19 | +# Docker imagee used for video recording |
| 20 | +video-image = "selenium/video:ffmpeg-4.3.1-20210426" |
| 21 | + |
| 22 | +# Uncomment the following section if you are running the node on a separate VM |
| 23 | +# Fill out the placeholders with appropriate values |
| 24 | +#[server] |
| 25 | +#host = <ip-from-node-machine> |
| 26 | +#port = <port-from-node-machine> |
0 commit comments