此代码不会将我重定向到Instagram。当我调试它时,我看到该程序只是停留在"新的chrome驱动程序"行。但是当我删除中间的行(添加参数)时它不会卡住并打开Instagram!没有找到任何解释。有人可以帮忙吗?
System.setProperty("webdriver.chrome.driver", "C:\\Users\\gum\\Desktop\\intellijprojects\\Instagram\\chromedriver.exe");
ChromeOptions options = new ChromeOptions();
options.addArguments("user-data-dir=C:/Users/gum/AppData/Local/Google/Chrome/User Data");
ChromeDriver driver = new ChromeDriver(options);
driver.get("https://www.instagram.com/explore/tags/food/");