Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rb] BiDi Network: add_request_handler, remove_request_handler, clear_request_handlers #14751

Merged
merged 16 commits into from
Dec 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update types
  • Loading branch information
aguspe committed Nov 15, 2024
commit eacb7d70b7d16319a7362bac0ac92dd832c15e07
6 changes: 3 additions & 3 deletions rb/sig/lib/selenium/webdriver/common/network.rbs
Original file line number Diff line number Diff line change
@@ -11,15 +11,15 @@ module Selenium

def add_authentication_handler: (String username, String password) -> String

def add_request_handler: -> String
def add_request_handler: -> Integer

def clear_authentication_handlers: -> Hash[nil, nil]

def clear_request_handlers: -> Hash[nil, nil]

def remove_authentication_handler: (String id) -> nil
def remove_authentication_handler: (Integer id) -> nil

def remove_request_handler: -> nil
def remove_request_handler: (Integer id) -> nil
end
end
end