Browse Source
This runs selenium from a container on a node, and exposes port 4444 so you can issue commands to it. This is used in the follow-on I56cda99790d3c172e10b664e57abeca10efc5566 to take some screenshots of gerrit. Change-Id: Idcbcd9a8f33bd86b5f3e546dd563792212e0751bchanges/78/767078/4
5 changed files with 31 additions and 1 deletions
@ -0,0 +1,6 @@
|
||||
run-selenium |
||||
|
||||
Run a selenium container that listens on port 4444 on a host. |
||||
|
||||
This is intended only for use during gate testing to capture |
||||
screenshots from a local service. Usually used from testinfra jobs. |
@ -0,0 +1,5 @@
|
||||
- name: Run selenium container |
||||
shell: |
||||
executable: /bin/sh |
||||
cmd: | |
||||
docker run -d --network="host" -v /dev/shm:/dev/shm selenium/standalone-firefox:4.0.0-beta-1-prerelease-20201202 |
Loading…
Reference in new issue