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 ran into an issue when the bottom sheet opens on the app.
Its a result of a click of a pay button on the application.
await $(#payButton).tap(); this is the last line in the test, no pump or pump and settle after that.
it fails with a #0 WidgetTester.pumpAndSettle.<anonymous closure error.
I will want to interact with the bottom likely with this sort of thing.
await $.native.tap(Selector(text: 'CONTINUE')); but it does not seem to get past the actual opening of the bottom sheet.
For example if I just did this it also fails.
await $(#payButton).tap();
await $.native.pressHome();
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
-
I've ran into an issue when the bottom sheet opens on the app.
Its a result of a click of a pay button on the application.
await $(#payButton).tap(); this is the last line in the test, no pump or pump and settle after that.
it fails with a #0 WidgetTester.pumpAndSettle.<anonymous closure error.
I will want to interact with the bottom likely with this sort of thing.
await $.native.tap(Selector(text: 'CONTINUE')); but it does not seem to get past the actual opening of the bottom sheet.
For example if I just did this it also fails.
await $(#payButton).tap();
await $.native.pressHome();
Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions