mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
54 lines
1.3 KiB
Dart
54 lines
1.3 KiB
Dart
|
import 'package:cake_wallet/generated/i18n.dart';
|
||
|
import 'package:cake_wallet/src/screens/welcome/create_pin_welcome_page.dart';
|
||
|
import 'package:cake_wallet/wallet_type_utils.dart';
|
||
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
||
|
import '../components/common_test_cases.dart';
|
||
|
|
||
|
class CreatePinWelcomePageRobot {
|
||
|
CreatePinWelcomePageRobot(this.tester) : commonTestCases = CommonTestCases(tester);
|
||
|
|
||
|
final WidgetTester tester;
|
||
|
late CommonTestCases commonTestCases;
|
||
|
|
||
|
Future<void> isCreatePinWelcomePage() async {
|
||
|
await commonTestCases.isSpecificPage<CreatePinWelcomePage>();
|
||
|
}
|
||
|
|
||
|
void hasTitle() {
|
||
|
String title;
|
||
|
if (isMoneroOnly) {
|
||
|
title = S.current.monero_com;
|
||
|
}
|
||
|
|
||
|
if (isHaven) {
|
||
|
title = S.current.haven_app;
|
||
|
}
|
||
|
|
||
|
title = S.current.cake_wallet;
|
||
|
|
||
|
commonTestCases.hasText(title);
|
||
|
}
|
||
|
|
||
|
void hasDescription() {
|
||
|
String description;
|
||
|
if (isMoneroOnly) {
|
||
|
description = S.current.monero_com_wallet_text;
|
||
|
}
|
||
|
|
||
|
if (isHaven) {
|
||
|
description = S.current.haven_app_wallet_text;
|
||
|
}
|
||
|
|
||
|
description = S.current.new_first_wallet_text;
|
||
|
|
||
|
commonTestCases.hasText(description);
|
||
|
}
|
||
|
|
||
|
Future<void> tapSetAPinButton() async {
|
||
|
await commonTestCases.tapItemByKey('create_pin_welcome_page_create_a_pin_button_key');
|
||
|
|
||
|
await commonTestCases.defaultSleepTime();
|
||
|
}
|
||
|
}
|