Java.io.IOException: Invalid Status code=403 text=Forbidden

Going through a bunch of different posts about this that showed up today. The fix in most cases is to add a chromedriver option to your driver instance. This is what got things working for me again.

Example:

options.addArguments("--remote-allow-origins=*")

Leave a Comment