Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
8.8k views
by Contributing Tester (16 points)
edited by
System.setProperty(webdriver.chrome.driver,pathtochrome);

Below are the following possibilities tried:
1.Using desired capabilities.        
        DesiredCapabilities desiredCapabilities = DesiredCapabilities.chrome();
        desiredCapabilities.setCapability("webdriver.chrome.args", Arrays.asList("--whitelisted-ips=''"));

2.Using Chromedriver service
       ChromeDriverService service =new ChromeDriverService.Builder().withWhitelistedIps("").withVerbose(true).build();

3.Using chrome options

       ChromeOptions chromeOptions = new ChromeOptions();
       chromeOptions.addArguments("--verbose");
       chromeOptions.addArguments("--whitelisted-ips=''");
        

driver=new ChromeDriver(desiredCapabilities/service/chromeOptions);

For all above types,it still says

Starting ChromeDriver 2.29.461591 (62ebf098771772160f391d75e589dc567915b233) on port 11109
Only local connections are allowed.

2 Answers

1 like 0 dislike
by

ChromeDriverService service =new ChromeDriverService.Builder().withWhitelistedIps("").withVerbose(true).build();

this works for me

 
0 like 0 dislike
by The go-to Tester (181 points)
edited by

It looks like you have not set network proxy. You need to set network proxy and define IP and the Port as given below.

capabilities.setCapability("network.proxy.http", "IP here");
capabilities.setCapability("network.proxy.http_port", "Port here");

Also, I do not see chromedriver.exe path mentioned.


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...