GPT Driver User Guide
GPT Driver SDK
GPT Driver SDK
  • 👋Welcome
  • Overview
    • 💡Why GPTD
    • SDKs
      • Prerequisites
      • Python
        • Setup
        • Examples
        • Reference
      • Typescript
        • Setup
        • Examples
        • Reference
      • Java
        • Setup
        • Examples
          • GPT Driver + TestNG
          • GPTD + Lambdatest
          • GPTD + SauceLabs
          • GPT Driver + BrowserStack
        • Reference
        • Use within Android
      • Android Native (Java/Kotlin)
        • Setup
        • Example
        • Reference
      • Swift
        • Setup
        • Usage
Powered by GitBook
On this page
  1. Overview
  2. SDKs

Prerequisites

PreviousSDKsNextPython

Last updated 3 months ago

Install Node and NVM ()

# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

# download and install Node.js (you may need to restart the terminal)
nvm install 20

Install local appium server and android / ios drivers ()

npm install -g appium
#iOS
appium driver install xcuitest

#Andoid
appium driver install uiautomator2

Alternatively, you can also use a dedicated interactive shell installer:

npx appium-installer
  • With the appium installer, please

    • install Appium Server

    • install Drivers

      • UIAutomator2 for Android

      • XCUITest for iOS

    • verify the HOME variable setup for Java, Android, and iOS

official docs
official docs