class Playwright::AndroidInput
def drag(from, to, steps)
def drag(from, to, steps) wrap_impl(@impl.drag(unwrap_impl(from), unwrap_impl(to), unwrap_impl(steps))) end
def press(key)
def press(key) wrap_impl(@impl.press(unwrap_impl(key))) end
def swipe(from, segments, steps)
def swipe(from, segments, steps) raise NotImplementedError.new('swipe is not implemented yet.') end
def tap_point(point)
def tap_point(point) wrap_impl(@impl.tap_point(unwrap_impl(point))) end
def type(text)
def type(text) wrap_impl(@impl.type(unwrap_impl(text))) end