所以我在Ubuntu机器上使用IntelliJ IDEA + chromedriver运行硒测试......
在我的Google Chrome安装中,我已经登录了一个帐户,比如谷歌.当我在selenium测试中访问http://accounts.google.com时,我会进入登录页面而不是实际的帐户管理页面.
我很确定我并不完全了解Selenium和Chrome驱动程序运行的确切方式,但我确实记得将"Google Chrome安装在默认位置"是运行Selenium测试的要求之一.镀铬驱动器.
我可以在已安装的浏览器的上下文中运行,即可以访问我的浏览器历史记录和Cookie吗?
每次Selenium打开浏览器(Chrome/Firefox/IE)时,它都会打开该浏览器的规范形式.作为测试人员,您可以使用DesiredCapabilities对象设置浏览器首选项,对于chrome,您还可以使用ChromeOptions对象来传递chrome命令行参数.
选择你的个人资料
ChromeOptions options = new ChromeOptions(); options.addArguments("user-data-dir=/path/to/your/custom/profile");
有关Chrome驱动程序功能的更多信息,请访问:https: //sites.google.com/a/chromium.org/chromedriver/capabilities
有关chrome的user-data-dir命令行选项的更多信息,请访问:https:
//www.chromium.org/user-experience/user-data-directory