From ead823a233f5ae168920365d60d42a5d9510f743 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 1 Aug 2024 13:08:17 +0200 Subject: [PATCH] e2e: fixed selenium address --- openvidu-call-front/e2e/selenium.conf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvidu-call-front/e2e/selenium.conf.ts b/openvidu-call-front/e2e/selenium.conf.ts index cd472565..6c9c1751 100644 --- a/openvidu-call-front/e2e/selenium.conf.ts +++ b/openvidu-call-front/e2e/selenium.conf.ts @@ -33,7 +33,7 @@ const chromeOptions: chrome.Options = new chrome.Options(); chromeOptions.addArguments(...(LAUNCH_MODE === 'CI' ? chromeArgumentsCI : chromeArguments)); export const OpenViduCallConfig: BrowserConfig = { appUrl: LAUNCH_MODE === 'CI' ? 'http://localhost:6080/' : 'http://localhost:5080/', - seleniumAddress: LAUNCH_MODE === 'CI' ? 'http://localhost:3000/webdriver' : '', + seleniumAddress: LAUNCH_MODE === 'CI' ? 'http://localhost:4444/wd/hub' : '', browserName: 'ChromeTest', browserCapabilities: Capabilities.chrome().set('acceptInsecureCerts', true), browserOptions: chromeOptions