hi all, I’m trying to automate APK using appium, webdriver io. the APK is create by using flutter. I can interact with app buttons like can tap, tap on button and move to next page etc. but when i tring to send value using setValue() back log shows action completd but I cant see value on the interface display. Why?);
// take first input
inputs.get(0).sendKeys("your text");
// if it will not work use keyboard
tap(inputs.get(0));
new Actions(driver).sendKeys("your text").perform();