1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
# 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 'network/url_pattern'
module Selenium
module WebDriver
class BiDi
class Network
EVENTS = {
before_request: 'network.beforeRequestSent',
response_started: 'network.responseStarted',
response_completed: 'network.responseCompleted',
auth_required: 'network.authRequired',
fetch_error: 'network.fetchError'
}.freeze
PHASES = {
before_request: 'beforeRequestSent',
response_started: 'responseStarted',
auth_required: 'authRequired'
}.freeze
def initialize(bidi)
@bidi = bidi
end
def add_intercept(phases: [], contexts: nil, url_patterns: nil, pattern_type: :string)
url_patterns = url_patterns && pattern_type ? UrlPattern.format_pattern(url_patterns, pattern_type) : nil
@bidi.send_cmd('network.addIntercept',
phases: phases,
contexts: contexts,
urlPatterns: url_patterns)
end
def remove_intercept(intercept)
@bidi.send_cmd('network.removeIntercept', intercept: intercept)
end
def continue_with_auth(request_id, username, password)
@bidi.send_cmd(
'network.continueWithAuth',
request: request_id,
action: 'provideCredentials',
credentials: {
type: 'password',
username: username,
password: password
}
)
end
def continue_without_auth(request_id)
@bidi.send_cmd(
'network.continueWithAuth',
request: request_id,
action: 'default'
)
end
def cancel_auth(request_id)
@bidi.send_cmd(
'network.continueWithAuth',
request: request_id,
action: 'cancel'
)
end
def continue_request(**args)
args = {
request: args[:id],
body: args[:body],
cookies: args[:cookies],
headers: args[:headers],
method: args[:method],
url: args[:url]
}.compact
@bidi.send_cmd('network.continueRequest', **args)
end
def fail_request(request_id)
@bidi.send_cmd(
'network.failRequest',
request: request_id
)
end
def continue_response(**args)
args = {
request: args[:id],
cookies: args[:cookies],
credentials: args[:credentials],
headers: args[:headers],
reasonPhrase: args[:reason],
statusCode: args[:status]
}.compact
@bidi.send_cmd('network.continueResponse', **args)
end
def provide_response(**args)
args = {
request: args[:id],
body: args[:body],
cookies: args[:cookies],
headers: args[:headers],
reasonPhrase: args[:reason],
statusCode: args[:status]
}.compact
@bidi.send_cmd('network.provideResponse', **args)
end
def set_cache_behavior(behavior, *contexts)
@bidi.send_cmd('network.setCacheBehavior', cacheBehavior: behavior, contexts: contexts)
end
def on(event, &block)
event = EVENTS[event] if event.is_a?(Symbol)
@bidi.add_callback(event, &block)
@bidi.session.subscribe(event)
end
end # Network
end # BiDi
end # WebDriver
end # Selenium
|