We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43946ab commit 24587dfCopy full SHA for 24587df
1 file changed
Framework/Built_In_Automation/Web/Selenium/BuiltInFunctions.py
@@ -461,7 +461,12 @@ def Open_Electron_App(data_set):
461
462
opts = Options()
463
opts.binary_location = desktop_app_path
464
- selenium_driver = webdriver.Chrome(opts, Service())
+ opts.add_argument("--remote-debugging-port=9222")
465
+ # service = Service(executable_path=electron_chrome_path)
466
+ p = '/Users/test/Downloads/chromedriver-mac-arm64/chromedriver'
467
+
468
+ service = Service(p)
469
+ selenium_driver = webdriver.Chrome(options=opts, service=service)
470
selenium_driver.implicitly_wait(0.5)
471
CommonUtil.ExecLog(sModuleInfo, "Started Electron App", 1)
472
Shared_Resources.Set_Shared_Variables("selenium_driver", selenium_driver)
0 commit comments