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

12 lines
262 B
Dart

import 'package:flutter_test/flutter_test.dart';
import '../../base/core_robot.dart';
class AddLabelModalRobot extends CoreRobot {
AddLabelModalRobot(super.$);
Future<void> tapCreateANewLabel() async {
await $(#create_a_new_label_button).tap();
}
}