class Selenium::WebDriver::BiDi::Protocol::Input
@see www.selenium.dev/documentation/warnings/bidi-implementation/
@api private
def perform_actions(context:, actions:)
- 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:)
- 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:)
- 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