Add E2E test for case show full recipient field when expand all

This commit is contained in:
dab246
2025-11-20 10:47:35 +07:00
committed by Dat H. Pham
parent 6f6284c21f
commit 2fe9021c7f
14 changed files with 90 additions and 3 deletions
+5 -1
View File
@@ -121,10 +121,14 @@ class ComposerRobot extends CoreRobot {
await $(#save_as_draft_popup_item).tap();
}
Future<void> tapRecipientExpandButton() async {
Future<void> tapToRecipientExpandButton() async {
await $(#prefix_to_recipient_expand_button).tap();
}
Future<void> tapCcRecipientExpandButton() async {
await $(#prefix_cc_recipient_expand_button).tap();
}
Future<void> tapFromFieldPopupMenu() async {
await $(FromComposerMobileWidget).$(InkWell).tap();
}