所以我正在Ubuntu机器上使用IntelliJ IDEA + chromedriver运行硒测试...
在安装Google Chrome时,我已经登录了一个帐户,例如Google。当我在硒测试中访问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
关于google-chrome - 我可以运行带有Selenium ChromeDriver的Selenium ChromeDriver的实际Chrome安装吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34179420/