In the documentation, I read that for using proxy set while building driver like this:
var driver = new webdriver.Builder()
.withCapabilities(webdriver.Capabilities.chrome())
.setProxy(proxy.manual({http: 'host:1234'}))
.build();
When I use this code with proxy '103.87.16.2:80' - .setProxy(proxy.manual({http: 'host:1234'}))
, I still have my home IP.
What is the problem?