mirror of
https://github.com/hamaluik/timecop.git
synced 2025-05-17 16:56:05 +08:00
feature/generate-screenshots-automation removing older screenshots test
This commit is contained in:
@ -1,120 +0,0 @@
|
||||
// commented out until screenshots updates on the package repo..
|
||||
|
||||
// import 'package:flutter_driver/flutter_driver.dart';
|
||||
// import 'package:screenshots/screenshots.dart';
|
||||
// import 'package:test/test.dart';
|
||||
|
||||
// void main() {
|
||||
// group('end-to-end test', () {
|
||||
// FlutterDriver driver;
|
||||
// final config = Config();
|
||||
|
||||
// setUpAll(() async {
|
||||
// driver = await FlutterDriver.connect();
|
||||
// });
|
||||
|
||||
// tearDownAll(() async {
|
||||
// if (driver != null) await driver.close();
|
||||
// });
|
||||
|
||||
// test('take screenshots', () async {
|
||||
// SerializableFinder startTimerButton = find.byType("StartTimerButton");
|
||||
|
||||
// // start by switching to the dark theme
|
||||
// SerializableFinder menuButton = find.byValueKey("menuButton");
|
||||
// await driver.waitFor(menuButton);
|
||||
// await driver.tap(menuButton);
|
||||
// SerializableFinder menuSettings = find.byValueKey("menuSettings");
|
||||
// await driver.waitFor(menuSettings);
|
||||
// await driver.tap(menuSettings);
|
||||
// SerializableFinder themeOption = find.byValueKey("themeOption");
|
||||
// await driver.waitFor(themeOption);
|
||||
// await driver.tap(themeOption);
|
||||
// SerializableFinder themeDark = find.byValueKey("themeDark");
|
||||
// await driver.waitFor(themeDark);
|
||||
// await driver.tap(themeDark);
|
||||
// await driver.waitUntilNoTransientCallbacks();
|
||||
// await screenshot(driver, config, '06 settings');
|
||||
// SerializableFinder backButton = find.byType("BackButton");
|
||||
// await driver.waitFor(backButton);
|
||||
// await driver.tap(backButton);
|
||||
|
||||
// // take a screenshot of the dashboard
|
||||
// await driver.waitFor(startTimerButton);
|
||||
// await screenshot(driver, config, '01 dashboard');
|
||||
|
||||
// // then the timer details page
|
||||
// //String appDevelopmentText = await driver.requestData("app-development");
|
||||
// //SerializableFinder timerEdit = find.text(appDevelopmentText);
|
||||
// SerializableFinder timerEdit = find.byValueKey("stoppedTimer-42");
|
||||
// await driver.waitFor(timerEdit);
|
||||
// await driver.tap(timerEdit);
|
||||
// SerializableFinder saveDetails = find.byValueKey("saveDetails");
|
||||
// await driver.waitFor(saveDetails);
|
||||
// await driver.waitUntilNoTransientCallbacks();
|
||||
// await screenshot(driver, config, '02 editor');
|
||||
|
||||
// // then the projects page
|
||||
// SerializableFinder closeButton = find.byType("CloseButton");
|
||||
// await driver.waitFor(closeButton);
|
||||
// await driver.tap(closeButton);
|
||||
// await driver.waitFor(menuButton);
|
||||
// await driver.tap(menuButton);
|
||||
// SerializableFinder menuProjects = find.byValueKey("menuProjects");
|
||||
// await driver.waitFor(menuProjects);
|
||||
// await driver.tap(menuProjects);
|
||||
// SerializableFinder addProject = find.byValueKey("addProject");
|
||||
// await driver.waitFor(addProject);
|
||||
// await driver.waitUntilNoTransientCallbacks();
|
||||
// await screenshot(driver, config, '03 projects');
|
||||
|
||||
// // then reports pages
|
||||
// await driver.waitFor(backButton);
|
||||
// await driver.tap(backButton);
|
||||
// await driver.waitFor(menuButton);
|
||||
// await driver.tap(menuButton);
|
||||
// SerializableFinder menuReports = find.byValueKey("menuReports");
|
||||
// await driver.waitFor(menuReports);
|
||||
// await driver.tap(menuReports);
|
||||
// SerializableFinder projectBreakdown = find.byValueKey("projectBreakdown");
|
||||
// await driver.waitFor(projectBreakdown);
|
||||
// await screenshot(driver, config, '04a projectBreakdown');
|
||||
|
||||
// // Arabic reverses the swiping direction, so take that into account
|
||||
// /*String direction = await driver.requestData("direction");
|
||||
// double d = direction == "ltr" ? -300 : 300;
|
||||
|
||||
// await driver.scroll(projectBreakdown, d, 0, Duration(milliseconds: 500));
|
||||
// SerializableFinder weeklyTotals = find.byValueKey("weeklyTotals");
|
||||
// await driver.waitFor(weeklyTotals);
|
||||
// await driver.waitUntilNoTransientCallbacks();
|
||||
// await screenshot(driver, config, '04b weeklyTotals');
|
||||
|
||||
// await driver.scroll(weeklyTotals, d, 0, Duration(milliseconds: 500));
|
||||
// SerializableFinder weekdayAverages = find.byValueKey("weekdayAverages");
|
||||
// await driver.waitFor(weekdayAverages);
|
||||
// await driver.waitUntilNoTransientCallbacks();
|
||||
// await screenshot(driver, config, '04c weekdayAverages');
|
||||
|
||||
// await driver.scroll(weekdayAverages, d, 0, Duration(milliseconds: 500));
|
||||
// SerializableFinder timeTable = find.byValueKey("timeTable");
|
||||
// await driver.waitFor(timeTable);
|
||||
// await driver.waitUntilNoTransientCallbacks();
|
||||
// await screenshot(driver, config, '04d timeTable');*/
|
||||
|
||||
// // then the export page
|
||||
// await driver.waitFor(backButton);
|
||||
// await driver.tap(backButton);
|
||||
// await driver.waitFor(menuButton);
|
||||
// await driver.tap(menuButton);
|
||||
// SerializableFinder menuExport = find.byValueKey("menuExport");
|
||||
// await driver.waitFor(menuExport);
|
||||
// await driver.tap(menuExport);
|
||||
// SerializableFinder optionColumns = find.byValueKey("optionColumns");
|
||||
// await driver.waitFor(optionColumns);
|
||||
// await driver.tap(optionColumns);
|
||||
// await driver.waitUntilNoTransientCallbacks();
|
||||
// await screenshot(driver, config, '05 export');
|
||||
// }, timeout: Timeout(Duration(seconds: 60)));
|
||||
// });
|
||||
// }
|
Reference in New Issue
Block a user