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

Add support for handling user prompt #15291

Merged
merged 6 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions rb/lib/selenium/webdriver/bidi/browsing_context.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ def set_viewport(context_id: nil, width: nil, height: nil, device_pixel_ratio: n
params = {context: context_id, viewport: {width:, height:}, device_pixel_ratio:}
@bidi.send_cmd('browsingContext.setViewport', **params)
end

def handle_user_prompt(context_id, accept: true, text: nil)
@bidi.send_cmd('browsingContext.handleUserPrompt', context: context_id, accept: accept, text: text)
end
end
end # BiDi
end # WebDriver
Expand Down
2 changes: 2 additions & 0 deletions rb/sig/lib/selenium/webdriver/bidi/browsing_context.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ module Selenium

def initialize: (Remote::Bridge bridge) -> void

def handle_user_prompt: (String context, bool accept, String text) -> untyped

def navigate: (String url, String? context_id) -> void

def set_viewport: (String context_id, Integer width, Integer height, Float device_pixel_ratio) -> Hash[nil, nil]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,39 @@ class BiDi
expect(driver.execute_script('return window.devicePixelRatio')).to eq(2.0)
end
end

it 'accepts users prompts without text' do
reset_driver!(web_socket_url: true) do |driver|
browsing_context = described_class.new(driver)
window = browsing_context.create

browsing_context.handle_user_prompt(window, accept: true)

expect(driver.page_source).to include('hello')
end
end

it 'accepts users prompts with text' do
reset_driver!(web_socket_url: true) do |driver|
browsing_context = described_class.new(driver)
window = browsing_context.create

browsing_context.handle_user_prompt(window, accept: true, text: 'Hello, world!')

expect(driver.page_source).to include('hello')
end
end

it 'rejects users prompts' do
reset_driver!(web_socket_url: true) do |driver|
browsing_context = described_class.new(driver)
window = browsing_context.create

browsing_context.handle_user_prompt(window, accept: false)

expect(driver.page_source).to include('goodbye')
end
end
end
end # BiDi
end # WebDriver
Expand Down