27
Mar

Launching chrome driver with proxy settings in Selenium WebDriver java

Following code snippet demonstrates how to launch chrome driver with proxy server: import org.openqa.selenium.Proxy; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.chrome.ChromeOptions; import org.openqa.selenium.remote.DesiredCapabilities; public class ChromeAutomationExtension { public static void...

Read More