blob: adf462b6af059d924dd5069c5dc07fa732982ffc [file] [log] [blame]
# frozen_string_literal: true
# Licensed to the Software Freedom Conservancy (SFC) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The SFC licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
require_relative '../spec_helper'
module Selenium
module WebDriver
class BiDi
describe BrowsingContext, only: {browser: %i[chrome edge firefox]} do
before { reset_driver!(web_socket_url: true) }
after { quit_driver }
it 'can create a browsing context for given id' do
id = driver.window_handle
browsing_context = described_class.new(driver: driver, browsing_context_id: id)
expect(browsing_context.id).to eq(id)
end
it 'can create a window' do
browsing_context = described_class.new(driver: driver, type: :window)
expect(browsing_context.id).not_to be_nil
end
it 'can create a window with a reference context' do
browsing_context = described_class.new(driver: driver, type: :window,
reference_context: driver.window_handle)
expect(browsing_context.id).not_to be_nil
end
it 'can create a tab without a reference context' do
browsing_context = described_class.new(driver: driver, type: :tab)
expect(browsing_context.id).not_to be_nil
end
it 'can create a tab with a reference context' do
browsing_context = described_class.new(driver: driver, type: :tab, reference_context: driver.window_handle)
expect(browsing_context.id).not_to be_nil
end
it 'can navigate to a url' do
browsing_context = described_class.new(driver: driver, type: :tab)
info = browsing_context.navigate url: url_for('/bidi/logEntryAdded.html')
expect(browsing_context.id).not_to be_nil
expect(info.url).to include('/bidi/logEntryAdded.html')
end
it 'can navigate to a url with readiness state' do
browsing_context = described_class.new(driver: driver, type: :tab)
info = browsing_context.navigate url: url_for('/bidi/logEntryAdded.html'),
readiness_state: :complete
expect(browsing_context.id).not_to be_nil
expect(info.url).to include('/bidi/logEntryAdded.html')
end
it 'can get tree with a child' do
browsing_context_id = driver.window_handle
parent_window = described_class.new(driver: driver, browsing_context_id: browsing_context_id)
parent_window.navigate(url: url_for('iframes.html'),
readiness_state: :complete)
context_info = parent_window.get_tree
expect(context_info.children.size).to eq(1)
expect(context_info.id).to eq(browsing_context_id)
expect(context_info.children[0]['url']).to include('formPage.html')
end
it 'can get tree with depth' do
browsing_context_id = driver.window_handle
parent_window = described_class.new(driver: driver, browsing_context_id: browsing_context_id)
parent_window.navigate(url: url_for('iframes.html'),
readiness_state: :complete)
context_info = parent_window.get_tree(max_depth: 0)
expect(context_info.children).to be_nil
expect(context_info.id).to eq(browsing_context_id)
end
it 'can close a window' do
window1 = described_class.new(driver: driver, type: :window)
window2 = described_class.new(driver: driver, type: :window)
window2.close
expect { window1.get_tree }.not_to raise_error
expect { window2.get_tree }.to raise_error(Error::WebDriverError)
end
end # BrowsingContext
end # BiDi
end # WebDriver
end # Selenium