我想请你帮我解决这个问题。我想用Selenium打开chrome窗口,使用Java语言。接下来,我想找到输入元素,并在其中放置一些文本。问题是,我无法摆脱cookie通知,因为窗口总是打开,我从谷歌帐户中卸载。如何打开已登录我帐户的chrome窗口?或者我如何才能摆脱谷歌cookie通知?
非常感谢。
Cookie通常显示为警报,因此这可能会起作用:
WebDriverWait wait = new WebDriverWait(driver,15);//create WebDriverWait
wait.until(ExpectedConditions.alertIsPresent());//Wait for the alert
driver.switchTo().alert().accept();//accept the alert