Logo

Terms and Conditions

Blog

Test Management System

Created with ❤️ by Clean Cut Kft. - 2025

DiscordYouTube
This is only a Test
/Curriculum
Curriculum
/
Testautomation
/
Appium
/
Run Appium and Android Studo, if you dont have it

Run Appium and Android Studo, if you dont have it

  • Open VS Code
  • Open a new terminal and run:
$emu = "$env:LOCALAPPDATA\Android\Sdk\emulator\emulator.exe"
Test-Path $emu
& $emu -list-avds
  • Replace <NAME> with the exact AVD name you saw:
& $emu -avd "<NAME>" -netdelay none -netspeed full
  • In a new terminal tab in VS Code (Terminal → Split Terminal):
$adb = "$env:LOCALAPPDATA\Android\Sdk\platform-tools\adb.exe"
& $adb devices
  • In the project terminal (inside your appium_shit folder):
npm test