关于GhostDriver的Cookie隔离问题
GhostDriver包括了Java驱动phantomjsdriver,PhantomJS WebDriver,详细的不再赘述。看上一片文章。
Java用phantomjsdriver时,碰到需要Cookie隔离问题,同一个网页,多个RemoteWebDriver会共享同一个Cookie。比如想要并行登陆并执行操作,这样是不行的。PhantomJS WebDriver其实内部就起了一个PhantomJS的进程。而PhantomJS模拟的是真实的浏览器。
这个问题GhostDriver开发人员也在解决,在Ghostdriver 1.1.1上添加了这个功能。并且PhantomJS也得添加支持,在PhantomJS 1.9.6,已经包含了Ghostdriver 1.1.1。详见讨论:here, there
按照我自己的测试,最新版本phantomjsdriver 1.2.0只与PhantomJS 1.9.2适配成功。
所以目前只能用PhantomJS 1.9.2,使用PhantomJSDriver来创建PhantomJS进程