While looking through the documentation, I came across a code snippet for using a proxy when building a driver:
var driver = new webdriver.Builder()
.withCapabilities(webdriver.Capabilities.chrome())
.setProxy(proxy.manual({http: 'host:1234'}))
.build();
However, even when I tried using this code with the proxy '103.87.16.2:80' - .setProxy(proxy.manual({http: 'host:1234'})), my home IP address was still detected.
Can anyone help me figure out what might be causing this issue?