package com.wiley.windows;
import java.util.Set;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
public class NewWindow {
private static WebDriver driver;
@BeforeClass
public static void before(){
driver=new FirefoxDriver();
driver.get("https://www.baidu.com");
driver.manage().window().maximize();
System.out.println("there are " + driver.getWindowHandles().size() + " window");
}
@AfterClass
public static void after(){
driver.quit();
}
@Test
public void getWindowMethod1(){
Actions action = new Actions(driver);
action.sendKeys(Keys.CONTROL + "n").perform();
switchToWindow("新标签页&#
selenium打开新窗口以及窗口切换
最新推荐文章于 2024-10-01 07:53:24 发布
本文展示了如何使用Selenium WebDriver在Java中打开新的浏览器窗口,并进行窗口切换。通过Keys.CONTROL + "n"模拟键盘操作,执行JavaScript命令,以及点击链接触发新窗口。同时提供了一个名为`switchToWindow`的辅助方法,用于根据窗口标题切换窗口。
摘要由CSDN通过智能技术生成