Appium : Clear a field

后端 未结 26 3173
野趣味
野趣味 2020-12-16 16:03

I have my login screen in app now. Each time the app is launched in screen the mobile number is pre filled with the older text.

I just want to know I have tried:

26条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-16 17:06

    I have faced the same issue, but i found one proper solution.

     public void clearTextBox(WebElement element) throws Exception
      {
          element.click();
          element.sendKeys(Keys.CONTROL + "a");
          element.sendKeys(Keys.DELETE);          
      }
    

    It will work for sure.

提交回复
热议问题