Maestro works great on Windows computers, but there are a few unique setup steps to be aware of. This guide will walk you through the end-to-end steps for getting started with Maestro on a Windows machine.
- Powershell is installed in Windows system.
- Install android studio in windows machine.
- Add ANDROID_HOME to your windows environment variable.
- To check if your ANDROID_HOME setup is correctly done, open a powershell terminal and run this command
adb --version.
- Note down the adb version.
- To check if your ANDROID_HOME setup is correctly done, open a powershell terminal and run this command
- Install Java JDK 11 and set JAVA_HOME
- Run
java --version
to check if the java is installed correctly.
- Run
- Install WSL2 (Window Subsystem for Linux)
- Install Java 11
- Install Maestro
With recent Windows 11, Microsoft have made it pretty easy to install Windows Subsystem For Linux aka WSL
In order to install WSL, open Powershell As Administrator and run following command:
wsl --install
After running the above command, follow through instructions and restart the computer.
Install Windows Terminal application for refreshing terminal experience.
Set your linux username and password (Something that you will not forget).
Run following 2 commands to update your Ubuntu system. Enter password when prompted.
sudo apt update
sudo apt upgrade
After restarting the system, open Terminal application and click on the dropdown to select Ubuntu. Type in following command:
sudo apt install openjdk-11-jdk
Installing Maestro is now just a matter of running following one command.
curl -Ls "https://get.maestro.mobile.dev" | bash
TADA!
You have successfully installed Maestro in your Windows machine 🙌
Check your maestro version using following command
maestro --version
- Download android command line tools zip file from android official site.
- Use these instruction to setup android command lines correctly in your WSL2 .
- Make sure you have ANDROID_HOME in your environment variable of WSL2 as well.
- To check that everything went good, do following:
- Close and relaunch terminal
- Run
adb --version
and see that adb version is shown - Since everything is installed fresh, your WSL 2 adb version should perfectly match with windows adb version that we noted down as part of pre-requisites.
It's time to put some magical elixir and make sure you are able to use android emulators with your WSL2 correctly.
Please follow below steps to setup the bridge.
- Fire up your android emulator on windows.
- Once android emulator is up and running, open a POWERSHELL PROMPT.
- Run this command in Powershell
adb -a -P 5037 nodaemon server
- Keep the powershell windows open.
- Now open your WSL2 terminal and run these commands.
adb kill-server
export ADB_SERVER_SOCKET=tcp:<WINDOWS_IPV4_ADDR>:5037
adb devices
- You should see your connected emulator successfully now.
Yes at this point you are free to start your automation.
- Write your first flow
- How to run my flow?
- To run your flow run this command in your WSL2 terminal
maestro --host <WINDOWS_IPV4_ADDR> test flow.yaml
- To run your flow run this command in your WSL2 terminal
- Check out the full documentation
If your android emulator is not up and running in windows host, the maestro test
command fails to find installed emulator.
At this point it is recommended that you fire up emulator before running the flow
using maestro.