From a40c279bdf415f495562131a167e0c33f6125f2f Mon Sep 17 00:00:00 2001 From: Ivan Krutov Date: Wed, 17 Nov 2021 06:54:08 +0300 Subject: [PATCH] Explicitly added --allowed-origins to Chromedriver command (related to #474) --- static/chrome/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/chrome/entrypoint.sh b/static/chrome/entrypoint.sh index 2403f2e59..181bc0593 100755 --- a/static/chrome/entrypoint.sh +++ b/static/chrome/entrypoint.sh @@ -87,7 +87,7 @@ if [ "$ENABLE_VNC" == "true" ]; then X11VNC_PID=$! fi -DISPLAY="$DISPLAY" /usr/bin/chromedriver --port=4444 --allowed-ips='' ${DRIVER_ARGS} & +DISPLAY="$DISPLAY" /usr/bin/chromedriver --port=4444 --allowed-ips='' --allowed-origins='*' ${DRIVER_ARGS} & DRIVER_PID=$! wait