所以我正在Ubuntu机器上使用IntelliJ IDEA + chromedriver运行selenium测试…
在安装Google Chrome时,我已经登录了一个帐户,例如Google。在selenium测试中访问http://accounts.google.com时,我进入登录页面,而不是实际的帐户管理页面。
我敢肯定,我不完全了解Selenium和chrome驱动程序的确切运行方式,但是我确实记得,将“ Google Chrome安装在默认位置”是使用Selenium测试运行的条件之一。 chrome驱动程序。
我可以在安装的浏览器的上下文中运行,即可以访问我的浏览器历史记录和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