After 110 version of ChromeDriver, there is an error:
java.io.IOException: Invalid Status code=403 text=Forbidden
This could be fixed by inserting these Chrome Options:
ChromeOptions options = new ChromeOptions();
options.addArguments("--remote-allow-origins=*");
Let me know in the comments if this helped!