TF-3260 Add integration test for app grid

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2024-12-23 08:56:55 +07:00
committed by Dat H. Pham
parent dce74b43e9
commit bbb98a2a49
10 changed files with 161 additions and 8 deletions
@@ -0,0 +1,10 @@
import '../base/core_robot.dart';
class MailboxMenuRobot extends CoreRobot {
MailboxMenuRobot(super.$);
Future<void> openAppGrid() async {
await $(#toggle_app_grid_button).tap();
}
}