在本地计算机上运行selenium时遇到错误,该计算机是Windows 10 Enterpise 64位(Microsoft Edge版本:25.10586.672.0)和Microsoft WebDriver - 版本10240.我的Selenium版本是:3.6.0
public class SeleniumTest {
private WebDriver driver;
@BeforeClass
public void getWebDriver() {
try {
System.setProperty("webdriver.edge.driver", "myapp/driver/MicrosoftWebDriver.exe");
DesiredCapabilities capabilities = DesiredCapabilities.edge();
capabilities.setCapability(CapabilityType.ForSeleniumServer.ENSURING_CLEAN_SESSION, true);
capabilities.setCapability(CapabilityType.PAGE_LOAD_STRATEGY, "eager");
capabilities.setPlatform(Platform.WIN10);
capabilities.setBrowserName(BrowserType.EDGE);
capabilities.setVersion("");
driver = new EdgeDriver(capabilities);
} catch (Exception e) {
e.printStackTrace();
}
driver.get(Constant.URL);
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(2, TimeUnit.SECONDS);
}
@AfterClass
public void quitDriver() throws InterruptedException {
Thread.sleep(3000);
driver.quit();
}
@Test ()
public void aTest() {
}
@Test ()
public void bTest() {
}
}
当我运行代码时,它会打开边缘浏览器并出现错误:
org.openqa.selenium.NoSuchSessionException: null (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 873 milliseconds
Build info: version: '3.6.0', revision: '6fbf3ec767', time: '2017-09-27T15:28:36.4Z'
System info: host: 'computername', ip: 'myip', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_111'
Driver info: driver.version: EdgeDriver
答案 0 :(得分:1)
您可以考虑查看发行说明:
更新.NET绑定以不发送错误的W3C Firefox功能 以前,RemoteWebDriver会发送相同的功能字典 使用“desiredCapabilities”和“capabilities”属性时 请求新的远程会话。在语言绑定的情况下 明确要求使用旧版Firefox驱动程序的功能 字典将包含对符合W3C标准无效的属性 远程服务器。要解决该问题,我们将掩盖显式尝试 设置一个导致.NET RemoteWebDriver发送的属性 仅在显式请求时的仅旧版兼容新会话请求 遗产司机。
我在您的代码中没有看到任何重大错误,除了一个,看 NoSuchSessionException
。而不是:
DesiredCapabilities capabilities = DesiredCapabilities.edge();
您应该使用:
DesiredCapabilities cap = new DesiredCapabilities();
答案 1 :(得分:0)
您可能还需要启动驱动程序服务,即
service = new EdgeDriverService.Builder()
.usingDriverExecutable(new File("path/to/my/MicrosoftWebDriver.exe"))
.usingAnyFreePort()
.build();
service.start();
查看EdgeDriver的this example。