class Selenium::WebDriver::BiDi::Protocol::Input

def perform_actions(context:, actions:)

Other tags:
    See: https://www.selenium.dev/documentation/warnings/bidi-implementation/ -

Other tags:
    Api: - private
def perform_actions(context:, actions:)
  params = PerformActionsParameters.new(context: context, actions: actions)
  execute(cmd: 'input.performActions', params: params)
end

def release_actions(context:)

Other tags:
    See: https://www.selenium.dev/documentation/warnings/bidi-implementation/ -

Other tags:
    Api: - private
def release_actions(context:)
  params = ReleaseActionsParameters.new(context: context)
  execute(cmd: 'input.releaseActions', params: params)
end

def set_files(context:, element:, files:)

Other tags:
    See: https://www.selenium.dev/documentation/warnings/bidi-implementation/ -

Other tags:
    Api: - private
def set_files(context:, element:, files:)
  params = SetFilesParameters.new(context: context, element: element, files: files)
  execute(cmd: 'input.setFiles', params: params)
end