Selenium 4 will support DevTools for Chrome. Is it planned to use these features on a selenium grid? And if so how would you initalize a ChromeDriver object. What i am looking for is this kind of statement
// this does not work
ChromeDriver driver = new Chromedriver(new URL("http://localhost:4444/wd/hub"), capabilities);
instead of RemoteWebDriver
new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capabilities)