autoauth firefox插件无法正常工作

时间:2016-04-08 12:09:55

标签: selenium firefox webdriver firefox-addon testng

大家好日子。

我使用Selenium WebDriver自动测试执行。但是在开发站点上使用HTTP base autentification。我找到了适用于Firefox的AutoAuth插件。它保存登录名/密码,每次都不需要输入密码。

但是这个插件不能保存credentions。我重新安装插件和Firefox,删除cookie,但没有。在这台机器上的其他用户插件工作成功。也许,任何人都有并解决了这个问题?

我已经写过了addon的作者。

方式:https://login:passwd@host也没有帮助......

1 个答案:

答案 0 :(得分:1)

你的意思是插件不能用webdriver调用吗?创建webdriver中提供的配置文件和调用的简单方法。

Here是创建firefox配置文件的方法。安装该加载项并保存凭据。

在webdriver中调用上面保存的个人资料

   ProfilesIni allProfiles = new ProfilesIni();
   FirefoxProfile profile = allProfiles.getProfile("selenium");
   WebDriver driver = FirefoxDriver(profile);

谢谢你, 穆拉利