From edf0cc8d5291b776967fed20cf995f008960dd4b Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Mon, 22 Jul 2024 21:45:38 +0200 Subject: [PATCH] Expose port to watch remote browser This allows to watch the remote controlled browser in your browser at (you have to comment out the `--headless` argument in TestCase::driver() before). --- .ci/compose.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.ci/compose.yaml b/.ci/compose.yaml index 1cdd7cb72b1..507072487d1 100644 --- a/.ci/compose.yaml +++ b/.ci/compose.yaml @@ -3,6 +3,10 @@ services: image: docker.io/greenmail/standalone browserhost: image: docker.io/selenium/standalone-chromium + ports: + # Allow to watch the remote controlled browser (comment out the + # `--headless` argument in TestCase::driver() before). + - '127.0.0.1:7900:7900' volumes: - '/dev/shm:/dev/shm' - '../tests/Browser/downloads:/downloads'