class Selenium::WebDriver::Interactions::PointerMove
def initialize(source, duration, x, y, **opts)
def initialize(source, duration, x, y, **opts) super(source) @duration = duration * 1000 @x_offset = x @y_offset = y @origin = opts.delete(:element) || opts.delete(:origin) || :viewport @type = :pointerMove @opts = opts end