There is a list of recognized "capabilities" in Webdriver and "debuggerAddress" is among them.
But I can't find a way to set such option neither in Capabilities class not in CromeOptions in javascript api.
As I can see in several questions "debuggerAddress" option (or capability?) is possible to set in Python api.
What I try is similar to this question, from node app
To link app to already started webdriver (cromedriver.exe). This is ok with
webdriver.Builder().usingServer( 'http://localhost:9515' )
Ask webdriver not to start new Chrome instance but instead to link to already started with
--remote-debugging-port=XXXXX
Chrome parameter. And this should be done with"debuggerAddress"
option/capability, but I can't realize how to do it with javascript api.