File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
rb/lib/selenium/webdriver Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ def continue_request(**args)
8181 'network.continueRequest' ,
8282 request : args [ :id ] ,
8383 'body' => args [ :body ] ,
84- 'cookies.rb ' => args [ :cookies ] ,
84+ 'cookies' => args [ :cookies ] ,
8585 'headers' => args [ :headers ] ,
8686 'method' => args [ :method ] ,
8787 'url' => args [ :url ]
@@ -99,7 +99,7 @@ def continue_response(**args)
9999 @bidi . send_cmd (
100100 'network.continueResponse' ,
101101 request : args [ :id ] ,
102- 'cookies.rb ' => args [ :cookies ] ,
102+ 'cookies' => args [ :cookies ] ,
103103 'credentials' => args [ :credentials ] ,
104104 'headers' => args [ :headers ] ,
105105 'reasonPhrase' => args [ :reason ] ,
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ class InsecureCertificateError < WebDriverError; end
189189 class InvalidArgumentError < WebDriverError ; end
190190
191191 #
192- # No cookie matching the given path name was found amongst the associated cookies.rb of the
192+ # No cookie matching the given path name was found amongst the associated cookies of the
193193 # current browsing context's active document.
194194 #
195195
Original file line number Diff line number Diff line change @@ -83,17 +83,17 @@ def delete_cookie(name)
8383 end
8484
8585 #
86- # Delete all cookies.rb
86+ # Delete all cookies
8787 #
8888
8989 def delete_all_cookies
9090 @bridge . delete_all_cookies
9191 end
9292
9393 #
94- # Get all cookies.rb
94+ # Get all cookies
9595 #
96- # @return [Array<Hash>] list of cookies.rb
96+ # @return [Array<Hash>] list of cookies
9797 #
9898
9999 def all_cookies
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ def execute_async_script(script, *args)
373373 end
374374
375375 #
376- # cookies.rb
376+ # cookies
377377 #
378378
379379 def manage
You can’t perform that action at this time.
0 commit comments