(DEPRECATED) Coding with C#

//Click element var element_17 = driver.FindElement(By.Id("io.selendroid.testapp:id/visibleButtonTest")); element_17.Click(); //Clear and Sendkeys to element var element_19 = driver.FindElement(By.Id("io.selendroid.testapp:id/my_text_field")); element_19.Clear(); element_19.SendKeys("example@mail.com"); //Swipe action with start XY and end XY coordinates (new TouchAction((AppiumDriver<IWebElement>) driver)) .Press(465, 1344) .MoveTo(588, 555) .Release() .Perform();