The project is in a healthy, maintained state
Running maestro test commands from fastlane
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

🧪 Maestro fastlane plugin

fastlane Plugin Badge

Getting Started

This project is a fastlane plugin. To get started with fastlane-plugin-maestro, add it to your project by adding the following line to your Pluginfile:

gem "fastlane-plugin-maestro", git: "https://github.com/inf2381/fastlane-plugin-maestro.git", branch: "main"

About this plugin

fastlane plugin for maestro. You can directly pass the options to maestro or provide them in the file fastlane/Maestrofile

Additionally to the maestro action, this plugin provides an action to start an iOS simulator and install a given .app file to it.

Examples

Create a simulator, install a .app file on it and patch the device for testing

app = File.realpath(Dir["../**/*.app"].first)

device = launch_simulator(
  app_path: app,
  device_name: "iPhone 14",
  language: "en-US"
)

Run all flows defined in the folder .maestro/screenshot

maestro(
  command: 'test',
  tests: '.maestro/screenshot',
  report_type: 'junit'
)

Install maestro

maestro(
  command: 'install'
)

Download the samples

maestro(
  command: 'download_samples'
)

For other examples, please have a look at the Fastfile of this repository

Issues and Feedback

For any other issues and feedback about this plugin, please submit it to this repository.

Troubleshooting

If you have trouble using plugins, check out the Plugins Troubleshooting guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

About fastlane

fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.