如何在 Watir 中设置 cookie

How to set cookies in Watir

我必须使用 Watir 和 Chrome 浏览器删除一个网站。该站点需要多个位置选择器才能打开。我需要在 cookie 中设置位置参数。

我已经使用了URL中列出的方法: http://watir.com/guides/cookies/

On running the code I got the following error: Failed to set the 'cookie' property on 'Document': Cookies are disabled inside 'data:' URLs. (Selenium::WebDriver::Error::NoScriptResultError)

browser.cookies.add 'foo', 'bar', path: '/', expires: 10.days.from_now, secure: true

参考:Watir