ChromeOptions options = new ChromeOptions();
+String proxyHost = "proxy.example.com:3128";
+capabilities.setCapability("proxy", Map.of(
+ "proxyType", "manual",
+ "httpProxy", proxyHost,
+ "sslProxy", proxyHost,
+));
+WebDriver driver = new RemoteWebDriver(new URL("https://moon.example.com/wd/hub"), options);
+