I have tried both the below code but unable to set proxy
Proxy proxy = new Proxy();
proxy.setHttpProxy("socks5://localhost:8080");
ChromeOptions options = new ChromeOptions();
options.addArguments("--proxy-server= proxy");
WebDriverManager.chromedriver().setup();
WebDriver driver = new ChromeDriver(options);
driver.manage().window().maximize();
driver.get("url");
or ChromeOptions chromeOption= new ChromeOptions(); WebDriverManager.chromedriver().proxy("socks5://localhost:8080").setup(); WebDriver driver=new ChromeDriver(chromeOption); driver.get("url");