fbtl_screenshots 0.0.2 copy "fbtl_screenshots: ^0.0.2" to clipboard
fbtl_screenshots: ^0.0.2 copied to clipboard

PlatformAndroid

A package for taking screenshots of Flutter apps using Firebase Test Lab.

A flutter package for taking screenshots using Firebase Test Lab.

Firebase Test Lab runs integration tests on emulators and real devices. This package helps you take screenshots during tests and adds the resulting screenshots to the firebase test lab output files.

Note this package is not affiliated with Firebase or Google.

Getting started #

First, use the flutter integration_test package to run your tests on Firebase Test Lab.

Once your tests are running on Firebase Test Lab, add screenshot support. Start by editing your pubspec.yaml file to add a dev dependency on fbtl_screenshots:

dev_dependencies:
  fbtl_screenshots: ^0.0.2

Then edit your integration_test/example_test.dart files to add calls to FBTLScreenshots.takeScreenshot:

import 'package:fbtl_screenshots/fbtl_screenshots.dart';
...
void main() {
  final _screenshots = FBTLScreenshots();
  await _screenshots.connect();
  
  testWidgets('screenshot', (WidgetTester tester) async {
    // Build the app.
    app.main();
    // Trigger a frame.
    await tester.pumpAndSettle();
    // Take the screenshot
    await _screenshots.takeScreenshot('screenshot-1');
  });
}

Examining the Screenshots #

Firebase Test Lab writes screenshot output to different locations depending on the platform.

For iOS, download the xctest files from Firebase Test Lab, and open them in XCode. Screenshots are included in the xctest output. Packages like XCParse can be used to parse the xctest output in continuous integration environments.

For Android, screenshots are written to the external storage directories. Download the screenshots by adding the '--directories-to-pull /sdcard' flag to your gcloud firebase test android run command.

0
likes
120
pub points
7%
popularity

Publisher

unverified uploader

A package for taking screenshots of Flutter apps using Firebase Test Lab.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, flutter_test, integration_test, path_provider, plugin_platform_interface

More

Packages that depend on fbtl_screenshots