While researching the topic on proxies in the documentation, I came across a method to set up a proxy while building a driver like this:
var driver = new webdriver.Builder()
.withCapabilities(webdriver.Capabilities.chrome())
.setProxy(proxy.manual({http: 'host:1234'}))
.build();
I attempted to implement this code with the proxy '103.87.16.2:80' -
.setProxy(proxy.manual({http: 'host:1234'}))
, but it seems that my home IP address is still being used.
What could be causing this issue?