feat: update docker-compose and service configurations for improved connectivity

This commit is contained in:
2025-02-05 23:37:49 +01:00
parent 9d79cecb01
commit 4aa164d148
3 changed files with 9 additions and 7 deletions

View File

@@ -49,7 +49,7 @@ def setupChromeDriver():
chrome_options.add_experimental_option('prefs', {'intl.accept_languages': 'en,en_US'})
#driver = webdriver.Chrome(options=chrome_options)
driver = webdriver.Remote(command_executor='http://selenium-standalone-chromium:4444', options=chrome_options)
driver = webdriver.Remote(command_executor='http://host.docker.internal:4444', options=chrome_options)
logger.log(logging.INFO, 'Chrome driver setup complete.')
return driver