You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been working with Appium-Flutter automation recently and encountered some challenges regarding confirming visibility, clickability, and retrieving attributes of Flutter elements using the appium-flutter-driver.
One approach I tried involved using the following code snippet:
const element = await $('your-selector');
const isDisplayed = await element.isDisplayed();
if (isDisplayed) {
// Element is displayed, perform actions
} else {
// Element is not displayed, handle accordingly
}
However, upon implementation, I encountered a 'Method not implemented' error, specifically:
Error: waitUntil condition failed with the following reason: Not implemented yet for find.
This error suggests that the method used for confirming visibility (isDisplayed()) is not yet implemented for the find operation in the appium-flutter-driver.
I've explored alternative methods but haven't found a satisfactory solution yet. Has anyone else faced a similar issue? If so, how did you approach it? Any insights or suggestions would be greatly appreciated.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello everyone,
I've been working with Appium-Flutter automation recently and encountered some challenges regarding confirming visibility, clickability, and retrieving attributes of Flutter elements using the appium-flutter-driver.
One approach I tried involved using the following code snippet:
However, upon implementation, I encountered a 'Method not implemented' error, specifically:
Error: waitUntil condition failed with the following reason: Not implemented yet for find.
This error suggests that the method used for confirming visibility (isDisplayed()) is not yet implemented for the find operation in the appium-flutter-driver.
I've explored alternative methods but haven't found a satisfactory solution yet. Has anyone else faced a similar issue? If so, how did you approach it? Any insights or suggestions would be greatly appreciated.
Looking forward to your responses.
Best regards,
Isuru Akalanka
Beta Was this translation helpful? Give feedback.
All reactions