You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using #3 as a base for this issue, I would like to run fastlane's Screengrab on all my AVDs and this does not seem to be working at the moment.
My fastfile:
lane :assemble_apk_and_grab_screenshots do
gradle(task: "assembleDebug assembleDebugAndroidTest")
screengrab
end
lane :grab_screenshots do
automated_test_emulator_run(
AVD_setup_path: "~/project/fastlane/AVD_config.json",
AVD_recreate_new: false,
AVD_clean_after: false,
shell_task: "fastlane assemble_apk_and_grab_screenshots"
)
end
What this does is launch my AVDs and runs my tests successfully. However, when I get to the screengrab task, only one emulator is showing there are screenshots available on the sdcard. The other emulator shows an error that there are no screenshots stored on the sdcard.
Both AVDs should have screenshots saved to them, since they are running the same tests. However, somehow, the screenshots from the first emulator are being cleaned when the second one completes.
The text was updated successfully, but these errors were encountered:
Using #3 as a base for this issue, I would like to run fastlane's Screengrab on all my AVDs and this does not seem to be working at the moment.
My fastfile:
What this does is launch my AVDs and runs my tests successfully. However, when I get to the screengrab task, only one emulator is showing there are screenshots available on the sdcard. The other emulator shows an error that there are no screenshots stored on the sdcard.
Both AVDs should have screenshots saved to them, since they are running the same tests. However, somehow, the screenshots from the first emulator are being cleaned when the second one completes.
The text was updated successfully, but these errors were encountered: