class Selenium::DevTools::V102::Fetch

def fulfill_request(request_id:, response_code:, response_headers: nil, binary_response_headers: nil, body: nil, response_phrase: nil)

def fulfill_request(request_id:, response_code:, response_headers: nil, binary_response_headers: nil, body: nil, response_phrase: nil)
  @devtools.send_cmd('Fetch.fulfillRequest',
                     requestId: request_id,
                     responseCode: response_code,
                     responseHeaders: response_headers,
                     binaryResponseHeaders: binary_response_headers,
                     body: body,
                     responsePhrase: response_phrase)
end