提交 0657bdea 编写于 作者: Huan (李卓桓)'s avatar Huan (李卓桓)

webdriver cookie doc

上级 0d29ad3f
{
"name": "wechaty",
"version": "0.1.4",
"version": "0.1.5",
"description": "Wechat for Bot. (Personal Account, NOT Official Account)",
"main": "index.js",
"scripts": {
......
......@@ -212,7 +212,9 @@ class Browser extends EventEmitter {
})
}
// convert expiry from seconds to milliseconds. https://github.com/SeleniumHQ/selenium/issues/2245
if (cookie.expiry) { cookie.expiry = cookie.expiry * 1000 }
// NOTICE: the lastest branch of selenium-webdriver for js has changed the interface of addCookie:
// https://github.com/SeleniumHQ/selenium/commit/02f407976ca1d516826990f11aca7de3c16ba576
if (cookie.expiry) { cookie.expiry = cookie.expiry * 1000 /* XXX: be aware of new version of webdriver */}
log.silly('PuppetWebBrowser', 'addCookies("%s", "%s", "%s", "%s", "%s", "%s")'
, cookie.name, cookie.value, cookie.path, cookie.domain, cookie.secure, cookie.expiry
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册