Welcome to the Maestro Test Automation documentation. This README serves as a summerized source for understanding key concepts and features of Maestro for mobile application testing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @Author - Harshvardhan Joshi ([email protected]) | |
// Objective: | |
// Using object-oriented programming, please implement command line program to implement an | |
// alarm clock | |
// An alarm clock has following features: | |
// 1. It displays the current time | |
// 2. A user can create any number of alarms by specifying the alarm time and day of the week and | |
// time when the alarm should alert | |
// 3. A user can snooze an alarm maximum of 3 times at an interval of 5 minutes each. | |
// 4. A user can delete an alarm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
/// Mock list of contacts | |
final _rawContacts = [ | |
// Actual Number: 9000000000 | |
"+919000000000", | |
"+9190000 00000", | |
"+91900-000-0000", | |
"919000000000", | |
"9190000 00000", | |
"91900-000-0000", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:async/async.dart'; | |
import 'package:dartz/dartz.dart'; | |
/// Pub Packages if not already install | |
/// | |
/// # Utility Extensions to existing dart classes & methods | |
/// dartz: ^0.10.1 | |
/// | |
/// # Asynchronous Operation Utilities | |
/// async: ^2.8.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
// Add this to pubspec.yaml of your flutter project | |
// palette_generator: ^0.3.2 | |
// get packages to download the package | |
import 'package:palette_generator/palette_generator.dart'; | |
/// This method will find & return the most dominant color from the image |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class PaginationView extends StatefulWidget { | |
final int maxCountPerPage; | |
final int totalCount; | |
final Widget Function(BuildContext context, int start, int end) builder; | |
final VoidCallback? onNext; | |
final VoidCallback? onPrevious; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function conditionalFormatting(value) { | |
var input = Math.abs(value) | |
var formatLegth = 2; | |
if(input == 0) { | |
formatLegth = 2; | |
} else if(input > 0 && input <= 1) { | |
formatLegth = 4; | |
} else if(input > 1 && input <= 10) { | |
formatLegth = 3; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Utility class for access to runtime permissions. | |
*/ | |
public abstract class PermissionUtils { | |
/** | |
* Requests the fine location permission. If a rationale with an additional explanation should | |
* be shown to the user, displays a dialog that triggers the request. | |
*/ | |
public static void requestPermission(AppCompatActivity activity, int requestId, |
NewerOlder