(DEPRECATED) Coding with Ruby

# Click element element_31 = driver.find_element(:id,"io.selendroid.testapp:id/visibleButtonTest") element_31.click # Clear and Sendkeys to element element_33 = driver.find_element(:id,"io.selendroid.testapp:id/my_text_field") element_33.clear element_33.send_keys "example@mail.com" # Swipe action with start XY and end XY coordinates action = ::Appium::Core::TouchAction.new($driver).press(x: 612, y: 1478).move_to(x: 535, y: 823).release action.perform