package rjcs; import java.util.List; import org.openqa.selenium.os.WindowsUtils; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.interactions.Actions; import org.openqa.selenium.os.WindowsUtils; import org.openqa.selenium.support.ui.Select; public class ddddd { public static void main(String[] args) { System.setProperty("webdriver.firefox.bin","C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe"); //设置火狐的安装路径,防止系统找不到 FirefoxDriver driver = new FirefoxDriver(); //初始化FireFox浏览器实例,并打开浏览器 try { driver.manage().window().maximize(); //最大化窗口 Thread.sleep(5000); driver.navigate().to("http://www.baidu.com"); Thread.sleep(5000); Actions action = new Actions(driver); action.moveToElement(driver.findElementByLinkText("设置")).perform(); //鼠标悬浮在 设置 元素上面 driver.findElementByClassName("setpref").click(); // 打开搜索设置 Thread.sleep(5000); System.out.println("---------------------------------"); //杀死一个浏览器进程 WindowsUtils.killByName("firefox.exe"); //引入包import org.openqa.selenium.os.WindowsUtils; System.out.println("---------------------------------"); Thread.sleep(10000); }catch (Exception e) { e.printStackTrace(); }finally { driver.quit(); } } }
java+selenium+new——杀掉windows的浏览器进程
原文:https://www.cnblogs.com/xiaobaibailongma/p/12285401.html