Hello all,
I have an issue with remote web driver using robot frame work .in fact the function works directly on the other version of my application which is based on electron .and today it did not work and the chrome driver is open manualyy.
chrome driver version 94.0.4606.113
My app version 94.0.4606.81
Function code :
Create WebDriver Instance
[Documentation] Create Webdriver To launch Chromium-based application ==> to create the cnx between Selenium and our app.
${port} Get Config Variable Value port
${chromeOptions}= Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys,selenium.webdriver
${chromeCapabilities}= Call Method ${chromeOptions} to_capabilities
Set To Dictionary ${chromeCapabilities["goog:chromeOptions"]} debuggerAddress 127.0.0.1:${port}
Create WebDriver Remote desired_capabilities=${chromeCapabilities} command_executor=127.0.0.1:9515
Issue is :
WebDriverException: Message: unknown error: cannot connect to chrome at 127.0.0.1:7070
from chrome not reachable
Stacktrace:
Backtrace:
Ordinal0 [0x006BB3C3+2470851]
Ordinal0 [0x006556A1+2053793]
Ordinal0 [0x00562300+1057536]
Ordinal0 [0x00557275+1012341]
Ordinal0 [0x0057FE91+1179281]
Ordinal0 [0x00579DDB+1154523]
Ordinal0 [0x00579BC1+1153985]
Ordinal0 [0x005A9ADF+1350367]
Ordinal0 [0x005A974A+1349450]
Ordinal0 [0x005A55AB+1332651]
Any one meet this issue
Help me plz
Melek