Open
Description
I am using Appium flutter driver to automate flutter app, but face below problem for sendkeys();
I am not able to use sendkeys(); method to pass value to the widgets.
I am able to perform click actions on the same, but while passing a text field to it I get "Responding to client with driver.setValue() result: null" error on the appium logs.
Attaching the appium server logs
FYI, I did add a wait condition to make sure the scripts are in sync with the app.
`
var mobileNumberButton = AppiumFlutterFinder.byKeyValueString('LoginCTANext');
var mobileNumberElement =driver.getElement(mobileNumberButton);
await mobileNumberElement.click();
print('sleep');
await Future.delayed(const Duration(seconds: 4));
print('awake');
await mobileNumberElement.sendKeys("8888800003");`
Here, until the click action works, but the sendkeys();
Appium_301222.txt
doesn't pass the value