Sha256: b01c8c072644b772fc866b6f7ada40d1ec06fe6bc8d9d9d940a05217082df065
Contents?: true
Size: 1.09 KB
Versions: 27
Compression:
Stored size: 1.09 KB
Contents
module Appium module Ios module Xcuitest module PasteBoard # @param [string] content The content of the pasteboard. The previous content is going to be overridden. # The parameter is mandatory # @option opts [string] :encoding Encoding of the given content. UTF-8 by default. # # ```ruby # set_pasteboard content: "sample content" # ``` def set_pasteboard(content:, encoding: nil) args = { content: content } args[:encoding] = encoding if encoding @driver.execute_script 'mobile: setPasteboard', args end # @option opts [string] :encoding Encoding of the received pasteboard content. UTF-8 by default. # # ```ruby # get_pasteboard encoding: "shift-jis" # ``` def get_pasteboard(encoding: nil) args = {} args[:encoding] = encoding if encoding @driver.execute_script 'mobile: getPasteboard', args end end end # module Xcuitest end # module Ios end # module Appium
Version data entries
27 entries across 27 versions & 1 rubygems