isPasswordChangeDisplayed static method
Check if password change form is displayed.
Implementation
static Future<bool> isPasswordChangeDisplayed(WidgetTester tester) async {
await tester.pumpAndSettle(const Duration(seconds: 1));
return await CommonTest.doesExistKey(tester, 'password') &&
await CommonTest.doesExistKey(tester, 'password2');
}