-2
任何人都可以告訴我在運行時在Firefox中自動啓動硒ide的eclipse代碼。 (運行時,瀏覽器的新實例被創建,所以沒有硒或IDE插件)。如何在運行時通過eclipse打開硒ide
這是我使用的代碼,但它不工作。請幫助我。
FirefoxProfile firefoxProfile = null; 嘗試{
File file = new File("C:\\Users\\user\\workspace\\Seleniumdb\\selenium-ide-2.9.0.xpi");
firefoxProfile = new FirefoxProfile();
firefoxProfile.addExtension(file);
} catch (IOException e) {
e.printStackTrace();
}
DesiredCapabilities capabilities = DesiredCapabilities.firefox();
capabilities.setCapability(FirefoxDriver.PROFILE, firefoxProfile);
WebDriver driver = null;
try {
driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capabilities);
} catch (MalformedURLException e) {
e.printStackTrace();
}
感謝
我已經使用它。但它不工作。 –