Watir-cookies

提供:Dev Guides
移動先:案内検索

Watir-クッキー

この章では、Watirを使用してCookieを操作する方法を学習します。

ここでは、指定されたURLのCookieを取得する簡単な例を説明します。

クッキーを取得する構文

browser.cookies.to_a

require 'watir'

b = Watir::Browser.new :chrome
b.goto 'https://www.finddevguides.com'
puts b.cookies.to_a

出力

{:name=>"_gat_gtag_UA_232293_6", :value=>"1", :path=>"/",
:domain=>".finddevguides.com", :expires=>2019-05-03 08:33:58 +0000,
:secure=>false}

{:name=>"_gid", :value=&gt "GA1.2.282573155.1556872379", :path=>"/",
:domain=>".finddevguides.com", :expires=>2019-05-04 08:32:57 +0000,
:secure=>false}

{:name=>"_ga", :value=>"GA1.2.2087825339.1556872379", :path=>"/",
:domain=>".finddevguides.com", :expires=>
2021-05-02 08:32:57 +0000, :secure=>false}

次に、以下に示すようにクッキーを追加しましょう-

クッキーを追加する構文

browser.cookies.add 'cookiename', 'cookievalue', path: '/', expires:
(Time.now + 10000), secure: true

require 'watir'
b = Watir::Browser.new :chrome
b.goto 'https://www.finddevguides.com'
puts b.cookies.to_a
b.cookies.add 'cookie1', 'testing_cookie', path: '/', expires:
(Time.now + 10000), secure: true
puts b.cookies.to_a

クッキーを追加する前の出力

{:name=>"_gat_gtag_UA_232293_6", :value=>"1", :path=>"/",
:domain=>".finddevguides.com", :expires=>2019-05-03 08:44:23 +0000,
:secure=>false}

{:name=>"_gid", :value=>"GA1.2.1541488984.1556873004",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2019-05-04 08:43:24 +0000, :secure=>false}

{:name=>"_ga", :value=>"GA1.2.1236163943.1556873004",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2021-05-02 08:43:24 +0000, :secure=>false}

Cookieを追加した後の出力

{:name=>"_gat_gtag_UA_232293_6", :value=>"1", :path=>"/",
:domain=>".finddevguides.com", :expires=>2019-05-03 08:44:23 +0000,
:secure=>false}

{:name=>"_gid", :value=>"GA1.2.1541488984.1556873004",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2019-05-04 08:43:24 +0000, :secure=>false}

{:name=>"_ga", :value=>"GA1.2.1236163943.1556873004",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2021-05-02 08:43:24 +0000, :secure=>false}

{:name=>"cookie1", :value=>"testing_cookie", :path=>"/",
:domain=>"www.finddevguides.com", :expires=>2039-04-28 08:43:35 +0000,
:secure=>true}

最後のものは、watirを使用して追加したものです。

クッキーを消す

構文

browser.cookies.clear

require 'watir'

b = Watir::Browser.new :chrome
b.goto 'https://www.finddevguides.com'
puts b.cookies.to_a
b.cookies.clear
puts b.cookies.to_a

出力

{:name=>"_gat_gtag_UA_232293_6", :value=>"1", :path=>"/",
:domain=>".finddevguides.com", :expires=>2019-05-03 08:48:29 +0000,
:secure=>false}

{:name=>"_gid", :value=>"GA1.2.1264249563.1556873251",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2019-05-04 08:47:30 +0000, :secure=>false}

{:name=>"_ga", :value=>"GA1.2.1001488637.1556873251",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2021-05-02 08:47:30 +0000, :secure=>false

Empty response ie a blank line will get printed after cookie.clear is called.

特定のCookieを削除する

構文

browser.cookies.delete 'nameofthecookie'

require 'watir'
b = Watir::Browser.new :chrome
b.goto 'https://www.finddevguides.com'
puts b.cookies.to_a
puts b.cookies.delete "_ga"
puts b.cookies.to_a

出力

All cookies:
{:name=>"_gat_gtag_UA_232293_6", :value=>"1", :path=>"/",
:domain=>".finddevguides.com", :expires=>2019-05-03 08:52:38 +0000,
:secure=>false}

{:name=>"_gid", :value=>"GA1.2.1385195240.1556873499",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2019-05-04 08:51:37 +0000, :secure=>false}

{:name=>"_ga", :value=>"GA1.2.1383421835.1556873499",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2021-05-02 08:51:37 +0000, :secure=>false}

After delete cookie with name _ga
{:name=>"_gat_gtag_UA_232293_6",
:value=>"1", :path=>"/", :domain=>".finddevguides.com",
:expires=>2019-05-03 08:52:38 +0000, :secure=>false}

{:name=>"_gid", :value=>"GA1.2.1385195240.1556873499",
:path=>"/", :domain=>".finddevguides.com",
:expires=>2019-05-04 08:51:37 +0000, :secure=>false}