我正在使用Selenium 3.4使用现在由Microsoft维护的Microsoft WebDriver启动Edge。
有什么办法可以使用Selenium在InPrivate模式下启动浏览器?
我搜索了答案但找不到答案。
我最接近的是How to start Edge browser in Incognito mode using selenium remote webdriver?
那里提到的解决方案不起作用。它只显示InPrivate中显示的相同选项卡,但窗口不是私有窗口。因此,存储信息并且会话不是私有的。
答案 0 :(得分:1)
使用以下代码,使用java.awt.Robot模拟组合CTRL+SHIFT+P
以在InPrivate模式下打开新的浏览器窗口:
System.setProperty("webdriver.edge.driver","D:\\Workspace\\StackOverlow\\src\\lib\\MicrosoftWebDriver.exe"); //put actual location
WebDriver driver = new EdgeDriver();
driver.navigate().to("https://www.google.com");
driver.manage().window().maximize();
Robot robot;
try {
// This is the actual code that opens the InPrivate window
robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_SHIFT);
robot.keyPress(KeyEvent.VK_P);
robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyRelease(KeyEvent.VK_SHIFT);
robot.keyRelease(KeyEvent.VK_P);
Thread.sleep(3000);
} catch (AWTException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String parentWindowHandler = driver.getWindowHandle();
String subWindowHandler = null;
Set<String> handles = driver.getWindowHandles();
Iterator<String> iterator = handles.iterator();
while (iterator.hasNext()){
subWindowHandler = iterator.next();
driver.switchTo().window(subWindowHandler);
System.out.println(subWindowHandler);
}
driver.get("https://stackoverflow.com/");
//driver.switchTo().window(parentWindowHandler); // Uncomment this line if you want to use normal browser back
}
请注意,我们正在使用机器人类,因此如果系统锁定它可能无法正常工作。
答案 1 :(得分:0)
添加功能... 尝试下面的代码。
DesiredCapabilities capabilities = DesiredCapabilities.edge();
capabilities.setCapability("ms:inPrivate", true);
return new EdgeDriver(capabilities);
答案 2 :(得分:0)
我这样使功能在Python中工作:
from selenium.webdriver import Edge
from selenium.webdriver import DesiredCapabilities
capabilities = DesiredCapabilities.EDGE
capabilities['ms:inPrivate'] = True
driver = Edge(capabilities=capabilities)