码迷,mamicode.com
首页 > 其他好文 > 详细

如何得到新打开的窗口

时间:2014-07-11 18:35:02      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:java   io   html   htm   new   window   

import java.io.File;
import java.util.Iterator;
import java.util.Set;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;

/*
 * 如何得到新打开的窗口
 */
public class PopupWindowTest {

    public static void main(String[] args) {
        WebDriver dr = new ChromeDriver();
        File file = new File("learning/test.html");
        String filePath = "file:///" + file.getAbsolutePath();
        System.out.println(filePath);

        dr.get(filePath);
        dr.findElement(By.id("51")).click();

        // 得到当前窗口句柄
        String currentWindow = dr.getWindowHandle();

        Set<String> handles = dr.getWindowHandles();
        Iterator<String> it = handles.iterator();

        while (it.hasNext()) {
            String tmp = it.next();
            if (currentWindow.equals(tmp))            // currentWindow == tmp  返回 false  字符串值比较用 equals, 字符串 == 比较的是地址
                continue;

            WebDriver window = dr.switchTo().window(tmp);
            System.out.println("title = " + window.getTitle() + " , url = "
                    + window.getCurrentUrl());
        }

        /*
         * while (it.hasNext()) { if (currentWindow == it.next()) continue;
         *
         * WebDriver window = dr.switchTo().window(it.next());
         * System.out.println("title = " + window.getTitle() + " , url = " +
         * window.getCurrentUrl()); }
         */

        dr.quit();
    }

}

如何得到新打开的窗口,布布扣,bubuko.com

如何得到新打开的窗口

标签:java   io   html   htm   new   window   

原文地址:http://www.cnblogs.com/Roger1227/p/3833688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!