使用webdriver关闭除第一个选项卡/主选项卡以外的所有打开的选项卡 [英] Closing all opened tabs except the first tab/main tab using webdriver

查看:392
本文介绍了使用webdriver关闭除第一个选项卡/主选项卡以外的所有打开的选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以告诉我如何使用webdriver关闭除第一个标签/主标签之外的所有打开的标签吗?

Can anyone tell me how to close all opened tabs except the first tab/main tab using webdriver?

我在下面尝试过,但它关闭所有标签,包括第一个选项卡。

I tried below, but it is closing all tabs including first tab as well.

public static void closeTabs() {
    String wh1=driver.getWindowHandle();
    String cwh=null;
    while(wh1!=cwh)
    {   
    new Actions(driver).sendKeys(Keys.CONTROL).sendKeys(Keys.NUMPAD1).perform();
    driver.findElement(By.tagName("body")).sendKeys(Keys.CONTROL, Keys.TAB);
    cwh=driver.getWindowHandle();
    driver.findElement(By.tagName("body")).sendKeys(Keys.CONTROL+"w");
    }
}

请帮助我。

推荐答案

获取所有窗口句柄然后遍历它们,将webdriver切换到新句柄,然后调用close方法。显然跳过这个原始手柄,然后切换回剩余的手柄。

Get all the window handles then iterate through them, switching webdriver to the new handle, then calling the close method. Obviously skip this for the original handle, then switch back to the remaining handle.

类似的东西;

    String originalHandle = driver.getWindowHandle();

    //Do something to open new tabs

    for(String handle : driver.getWindowHandles()) {
        if (!handle.equals(originalHandle)) {
            driver.switchTo().window(handle);
            driver.close();
        }
    }

    driver.switchTo().window(originalHandle);

这篇关于使用webdriver关闭除第一个选项卡/主选项卡以外的所有打开的选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆