Hello,
I need to connect to existing instance of Chrome over Chromedriver.
So I need to specify debuggerAddress = "127.0.0.1:xxxx".
Could you tell me how to do this?
Actually I need something like that in Java:
ChromeOptions options = new ChromeOptions();
options.setExperimentalOption(“debuggerAddress”,”localhost:9595“);
ChromeDriver driver = new ChromeDriver(options);
Hello, I need to connect to existing instance of Chrome over Chromedriver. So I need to specify debuggerAddress = "127.0.0.1:xxxx". Could you tell me how to do this?
Actually I need something like that in Java: