我有一个由Cucumber
,Selenium
和Java
提供支持的测试项目
问题: Firefox在selenium启动时崩溃,点击okay后弹出firefox运行正常。这个问题只出现在我的机器上。在我们的集成服务器上,它运行得很好。我认为我的Firefox Profile
有缺陷。
问题: selenium使用的配置文件位于何处?我顺便使用Windows。有没有办法重置它?
的相关信息: 我像这样实例化WebDriver:
FirefoxProfile ffProfile = new FirefoxProfile();
ffProfile.setAssumeUntrustedCertificateIssuer(false);
FirefoxDriver ff = new FirefoxDriver(ffProfile);
我使用最新的firefox
在此先感谢,如果需要进一步的信息,请发表评论,如果可能的话,我会提出质疑。