Я пытаюсь запустить электронное приложение на удаленном ПК, который подключен как узел к сетке селена. Ранее он работал нормально. Но теперь я получаю эту ошибку "Файл DevToolActivePort не существует"
System.out.println("launch application in windows PC");
capa = new DesiredCapabilities();
capa.setBrowserName("chrome");
File file = new File("path\\to\\file\\.exe");
URL server = new URL("http://ip_of_remote_pc:4444/wd/hub");
ChromeOptions options = new ChromeOptions();
options.setBinary(file); //Sets the path to the Chrome executable
capa.setCapability(ChromeOptions.CAPABILITY, options);
driver2 = new RemoteWebDriver(server, capa); //launch the application
System.out.println("launching application in remote PC");
driver2.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
System.out.println("Application launched");