How to clear text from any texbox using appium?
//Clear the text using .clear(); method.
driver.findElement(By.name(""q"")).clear();
//Checking is the text is cleared to pass the test.
report.addStep(""Removed the text'"", null, null, takeScreenShot(myContext), ExecutionResult.Pass);