(DEPRECATED) Coding with Python

#Click element element_24 = driver.find_element_by_id("io.selendroid.testapp:id/visibleButtonTest") element_24.click() #Clear and Sendkeys to element element_26 = driver.find_element_by_id("io.selendroid.testapp:id/my_text_field") element_26.clear() element_26.send_keys("example@mail.com") #Swipe action with start XY and end XY coordinates actions = TouchAction(driver) actions.press(None,518,1384,None).move_to(None,512,826).release().perform()