Skip to content Skip to sidebar Skip to footer

How To Confirm A Numberpicker After Sending Data With Appium

I write test automation for Android Native app. And I want to enter/send value to a NumberPicker, my code is below: WebElement heightValue = appiumDriver.findElement(By.className('

Solution 1:

This one interacts with native keyboard action key - enter(confirm):

driver.sendKeyEvent(66);

Post a Comment for "How To Confirm A Numberpicker After Sending Data With Appium"