Files
workavia-mail-front/integration_test/robots/labels/create_label_modal_robot.dart
T

27 lines
988 B
Dart

import 'package:core/presentation/views/text/text_field_builder.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:tmail_ui_user/features/base/widget/label_input_field_builder.dart';
import 'package:tmail_ui_user/features/labels/presentation/models/label_action_type.dart';
import 'package:tmail_ui_user/features/labels/presentation/widgets/create_new_label_modal.dart';
import '../../base/core_robot.dart';
class CreateLabelModalRobot extends CoreRobot {
CreateLabelModalRobot(super.$);
Future<void> enterNewLabelName(String name) async {
await $(CreateNewLabelModal)
.$(LabelInputFieldBuilder)
.$(TextFieldBuilder)
.enterText(name);
}
Future<void> tapPositiveActionButton(LabelActionType actionType) async {
if (actionType == LabelActionType.create) {
await $(CreateNewLabelModal).$(#create_label_button_action).tap();
} else {
await $(CreateNewLabelModal).$(#save_label_button_action).tap();
}
}
}