How To Install Appium Inspector And Appium Server GUI

Introduction

Hi friends, In this article, we are going to learn what appium is and how to install appium in our system. Appium is a popular open-source tool for automating mobile applications across various platforms like Android and iOS. Appium's support for multiple programming languages, including Java, Python, JavaScript, and more, ensures flexibility and accommodates diverse skill sets within development teams.

Appium Automation Testing Image

Why Mobile Automation Testing Required?

Mobile automation testing offers numerous benefits that contribute to the overall quality and success of mobile applications. Here are several key reasons why mobile automation testing is essential:

  • Saves time by automating repetitive testing tasks.
  • Improves test coverage across different devices and operating systems.
  • It helps catch bugs early in the development process.
  • Ensures consistent and reliable testing results.
  • Facilitates faster releases, keeping pace with market demands.
  • Supports scalability and reusability of test scripts.
  • Optimizes resource utilization and allows focus on complex testing scenarios.
  • Aligns with Agile and DevOps practices for continuous integration and delivery.
  • Ultimately, enhances user experience by delivering high-quality mobile apps.

Why Appium For Mobile Automation Testing?

Whether you're a QA engineer, developer, or testing enthusiast, Appium is awesome for mobile automation testing because:

  1. Works Everywhere: It can test both Android and iOS apps, covering all bases.
  2. No Code Changes Needed: You don't have to change the app's code to test it.
  3. Easy to Learn: It's simple to pick up, especially if you know web automation.
  4. Saves Time: Automates repetitive tasks so you can focus on the fun stuff.
  5. Community Support: You're not alone! There's a big community ready to help.
  6. Fits Your Language: You can write tests in Java, Python, JavaScript, and more.
  7. Continuous Integration: Integrates smoothly with your development pipeline for seamless testing.
  8. Real Devices: Test on real phones and tablets, just like your users.
  9. Cost-Effective: Being open-source means it's free to use and adapt.

Appium makes mobile testing easy, effective, and enjoyable!

Prerequisite

  • Having installed Java JDK
  • Having installed Android Studio

How To Install Appium

We need to install Appium Server GUI and Appium Inspector for Appium Setup.

Step 1. Downloading Appium Server GUI

  • Navigate to the link Appium Server UI Download Link and Choose the appropriate version for your operating system (Windows, macOS, or Linux)
  • In my case, I have a Windows machine, so I am selecting Appium-Server-GUI-windows-1.22.3-4.exe
  • Once downloaded, proceed with the installation process by following the on-screen instructions.

Step 2. Downloading Appium Inspector

  • Navigate to the link Appium Inspector Download Link and Choose the appropriate version for your operating system (Windows, macOS, or Linux)
  • In my case, I have a Windows machine, so I am selecting Appium-Inspector-windows-2024.3.1-x64.exe
  • Once downloaded, proceed with the installation process by following the on-screen instructions.

Step 3. Setting Up Environment

After installation, make sure to set up your development environment properly. This involves configuring your system variables (like PATH) to include the paths to the Appium and other necessary executables.

Java Path

Please make sure you have added the Java path in your Environment Variables section and select the "Path" variable

JAVA_HOME Path

Please make sure you have added the Java home path in your Environment Variables section and select the "JAVA_HOME" variable

JAVA_HOME Path

Android SDK Path

Open your Android Studio->Tools->Select SDK Manager and find your SDK Path location.

Please copy these above paths into your notepad. We will use these in the future.

Step 4. Open Your Appium Server GUI

  • Click on Edit Configurations.
  • Paste your JAVA_HOME path and Android SDK path. Click on Save and Restart.
  • Click on Restart. Now close the Popup Window and go back to the Appium Server UI Home Page.
  • Now click on Advanced, Scroll, and enable the Allow CORS.
  • click on Simple, change the host with 0.0.0.0 to localhost, and start the server
  • Congratulations Server is Running

Step 5. USB Debugging

Please make sure your Developer Option and USB Debugging must be on.

Step 6. Open Your Appium Inspector

Please edit the below parameter

Remote Host -> localhost

Remote Port-> 4723

Remote Path->/wd/hub

Capability Builder-> Click on Edit in JSON Representation, paste the below JSON, and click on the save icon.

{
  "platformName": "Android"
}

click on the Start Session button.

  • Congratulations, Inspector is Running

Conclusion

In this article, we have seen how to install Appium. Thanks for reading, and I hope you like it. If you have any suggestions or queries about this article, please share your thoughts. You can read my other articles by clicking here.

Happy learning, friends!


Similar Articles