Skip to content

Commit 7dc32dc

Browse files
luke-hilldiemol
andauthored
Allow httpOnly property to be bubbled up to cookie manager (#8958)
Co-authored-by: Diego Molina <[email protected]>
1 parent e78881d commit 7dc32dc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rb/lib/selenium/webdriver/common/manager.rb

+1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ def convert_cookie(cookie)
174174
domain: cookie['domain'] && strip_port(cookie['domain']),
175175
expires: cookie['expiry'] && datetime_at(cookie['expiry']),
176176
same_site: cookie['sameSite'],
177+
http_only: cookie['httpOnly'],
177178
secure: cookie['secure']
178179
}
179180
end

0 commit comments

Comments
 (0)