Skip to content

Commit 996c527

Browse files
committed
remove unnecessary changes
1 parent bb1ece5 commit 996c527

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

rb/lib/selenium/webdriver/bidi/network.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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],

rb/lib/selenium/webdriver/common/error.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

rb/lib/selenium/webdriver/remote/bridge.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)