我想在启用Selenium IDE的情况下启动Firefox,这样我就可以继续测试运行结束的脚本。这是我目前使用的代码:
FirefoxProfile profile = new FirefoxProfile();
try {
File seleniumide = new File("C:\\Downloads\\selenium-ide-2.8.0.xpi");
profile.addExtension(seleniumide);
} catch(IOException e) {
e.printStackTrace();
}
FirefoxDriver driver = new FirefoxDriver(profile);
但是,当我运行此Firefox时,会打开但不会显示启动Selenium IDE的按钮。有什么想法吗?
答案 0 :(得分:2)
刚刚在网上找到了这个解决方案。
https://code.google.com/p/selenium/issues/detail?id=7388
您必须通过重命名为.zip并仅提取selenium-ide.xpi文件来解压缩xpi文件。使用此文件的路径设置您的个人资料。