From a33dc1b6e522321226bcdc14f44f89f54e9415ee Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Tue, 31 Jan 2023 19:43:22 -0800 Subject: [PATCH] print out screenshots --- integration_test/steps/utils.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/integration_test/steps/utils.dart b/integration_test/steps/utils.dart index 1263e6ac..d9809ba5 100644 --- a/integration_test/steps/utils.dart +++ b/integration_test/steps/utils.dart @@ -10,6 +10,7 @@ StepDefinitionGeneric TakeScreenshot() { final bytes = await context.world.appDriver.screenshot(); final screenshotData = base64Encode(bytes); print("EMBEDDING SCREENSHOT...."); + print("$screenshotData"); context.world.attach(screenshotData, 'image/png', 'And I take a screenshot'); } catch (e, st) { print("FAILED TO EMBED??? $e $st");