如何通过eclipse

时间:2015-07-21 05:19:47

标签: eclipse selenium

任何人都可以告诉我在Firefox中运行时自动启动selenium ide的eclipse代码。 (在运行时,创建了新的浏览器实例,因此不存在selenium 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();
    }

谢谢

1 个答案:

答案 0 :(得分:0)

首先,在firefox中安装所需的插件。

然后,使用firefox.exe密钥启动-p

创建个人资料。

使用此配置文件实例化WebDriver实例。

启动时,所有插件及其设置都将在那里。