selenium中的handle/accept cookie弹出窗口

kxeu7u2r  于 2021-07-08  发布在  Java
关注(0)|答案(2)|浏览(502)

我正在尝试接受主页上的cookies,但是我的代码不起作用。我尝试获取新的窗口句柄,然后为frame和accept按钮标识后续的xpath,但始终没有成功。

package seleniumTestPack;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.*;
import org.openqa.selenium.chrome.*;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.openqa.selenium.Cookie;

@SuppressWarnings("unused")
public class firstSelTest {
    public static void main(String[] args) throws InterruptedException {
        ChromeOptions options = new ChromeOptions();

        //Add chrome switch to disable notification - "**--disable-notifications**"
        options.addArguments("--disable-notifications");

        System.setProperty("webdriver.chrome.driver", "C:\\Users\\vmyna\\Downloads\\chromedriver_win32\\chromedriver.exe");
        WebDriver driver = new ChromeDriver(options);

        driver.get("https://www.zyyah.com/homeowner-lifestyle-perfected-home-value-protected/");

        driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);

        driver.switchTo().frame(0);
        driver.getWindowHandles();

        driver.switchTo().alert().accept();
        By cookies_accept = By.xpath("//*[@id=\"cookie-law-info-bar\"]");
        By cookies_gotIt = By.xpath("//*[@id=\"cookie_action_close_header\"]");
        WebDriverWait wait = new WebDriverWait(driver, 10);
        wait.until(ExpectedConditions.elementToBeClickable(cookies_accept)).click();
        wait.until(ExpectedConditions.invisibilityOfElementLocated(cookies_accept));
        wait.until(ExpectedConditions.elementToBeClickable(cookies_gotIt)).click();

        driver.findElement(By.xpath("//*[@id=\'et-boc\']/div/div/div[4]/div/div/div[2]/div[1]")).click();

        Thread.sleep(10000);
        driver.quit();

    }
 }
2fjabf4q

2fjabf4q1#

下面的代码对我有用。”“接受cookies”按钮不在任何弹出窗口下。所以这里没有框架或弹出窗口。在这里,我们只需要找到“接受饼干”按钮,并点击它。

WebDriver Driver = new ChromeDriver();
    Driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
    String url = "https://www.zyyah.com/homeowner-lifestyle-perfected-home-value-protected/";
    Driver.get(url);
    Driver.findElement(By.id("cookie_action_close_header")).click();
    System.out.println("completed");
voj3qocg

voj3qocg2#

在您的案例中不需要切换框架,因为页面中没有框架。只需检查“接受cookies”并点击它。

driver.get("https://www.zyyah.com/homeowner-lifestyle-perfected-home-value-protected/");
 driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
driver.findElement(By.id("cookie_action_close_header")).click();

使用切换到帧:
https://www.browserstack.com/guide/handling-frames-in-selenium
警报的使用:
https://www.browserstack.com/guide/alerts-and-popups-in-selenium

相关问题