How to select all text using Appium?
//Here q is the textbox from which you want to select text.
driver.findElement(By.name("q")).sendKeys(Keys.chord(Keys.CONTROL, "a"));
Posted on April 11, 2019
By Shah Nawaz
//Here q is the textbox from which you want to select text.
driver.findElement(By.name("q")).sendKeys(Keys.chord(Keys.CONTROL, "a"));