2 | Appium Step by Step | Complete Setup for Android Mobile Testing without using Android Studio

  Рет қаралды 18,878

Automation Step by Step

Automation Step by Step

Күн бұрын

Пікірлер: 93
@benjamin2713
@benjamin2713 Ай бұрын
1:01:17 "Error: Flag '--name' is not a valid global flag. Did you mean to specify it after the verb/object name?"
@benjamin2713
@benjamin2713 Ай бұрын
This would be a valid command: avdmanager create avd -n "Galaxy S6" -k "system-images;android-24;google_apis;x86_64"
@RaghavPal
@RaghavPal Ай бұрын
the error suggests that --name is not recognized because it’s placed incorrectly in the command syntax. Try reordering your command to fit the correct structure: avdmanager create avd -n "Galaxy S6" -k "system-images;android-24;google_apis;x86_64" Here: -n "Galaxy S6" specifies the name. -k "system-images;android-24;google_apis;x86_64" specifies the system image. This should create an AVD with the name and system image you specified -
@hedinaili2665
@hedinaili2665 2 ай бұрын
Thank You very much for these really 'Step by Step' courses!
@RaghavPal
@RaghavPal 2 ай бұрын
You're very welcome
@sabashaikh2410
@sabashaikh2410 Ай бұрын
Wonderful Wonderful video. It is very very helpful. Brilliant!! Thank you so much😊
@RaghavPal
@RaghavPal Ай бұрын
Glad it was helpful
@benjamin2713
@benjamin2713 Ай бұрын
1:03:03 Instead of adding a "platforms" env variable, one has to add a "tools" variable now.
@RaghavPal
@RaghavPal Ай бұрын
Thanks for adding Benjamin
@NadeemAhmed-p7b
@NadeemAhmed-p7b Ай бұрын
Thank you so much for such a helpful tutorial .
@RaghavPal
@RaghavPal Ай бұрын
Most welcome Nadeem
@tabitavadranam1808
@tabitavadranam1808 5 ай бұрын
after seting the path varible for build tools and platform tools again showing error that android home is not set before build tools and platform tools it came correct only i have set the path like in the video u have provided and docs also can pls explain me how to overcome it
@RaghavPal
@RaghavPal 5 ай бұрын
Tabita Let's break down the problem step by step: Error Message: "Android home is not set before build tools and platform tools" What it means: The error message is indicating that the `ANDROID_HOME` environment variable is not set correctly, which is required for Appium to work with Android mobile testing. What you've done so far: 1. You've set the path variables for `build tools` and `platform tools`. 2. You've followed the instructions from a video and the official documentation. What's missing: The `ANDROID_HOME` environment variable is not set correctly. Solution: 1. Check if ANDROID_HOME is set: Open a new command prompt or terminal and type the following command: ``` echo %ANDROID_HOME% ``` If the output is blank or doesn't point to the correct Android SDK directory, then `ANDROID_HOME` is not set correctly. 2. Set ANDROID_HOME environment variable: a. Right-click on "Computer" or "This PC" and select "Properties". b. Click on "Advanced system settings" on the left side. c. Click on "Environment Variables". d. Under "System Variables", click "New". e. In the "Variable name" field, enter `ANDROID_HOME`. f. In the "Variable value" field, enter the path to your Android SDK directory (e.g., `C:\Users\YourUsername\AppData\Local\Android\Sdk`). g. Click "OK" to close all the windows. Alternative method: You can also set the `ANDROID_HOME` environment variable using the command prompt or terminal: ``` set ANDROID_HOME=C:\Users\YourUsername\AppData\Local\Android\Sdk ``` Replace `C:\Users\YourUsername\AppData\Local\Android\Sdk` with the actual path to your Android SDK directory. 3. Verify ANDROID_HOME is set correctly: Open a new command prompt or terminal and type the following command: ``` echo %ANDROID_HOME% ``` This should output the correct path to your Android SDK directory. 4. Try running Appium again: After setting the `ANDROID_HOME` environment variable, try running Appium again to see if the error is resolved --
@tabitavadranam1808
@tabitavadranam1808 5 ай бұрын
ok thank u very much@@RaghavPal
@tabitavadranam1808
@tabitavadranam1808 5 ай бұрын
sir after set up iwas getting WARN AppiumDoctor ✖ android, emulator could NOT be found in D:\Android! emulator warn is but what about the android sir can u tell about this
@RaghavPal
@RaghavPal 4 ай бұрын
Here are a few steps you can try to resolve this: 1. Check SDK Path: Ensure that your `ANDROID_HOME` environment variable is correctly set to the path of your Android SDK. It should look something like `D:\Android\Sdk`. 2. Install Command Line Tools: If the `android` tool is missing, you might need to install the command line tools. You can do this through Android Studio: - Open Android Studio. - Go to File > Settings > Appearance & Behavior > System Settings > Android SDK. - Click on the SDK Tools tab. - Check the box for Android SDK Command-line Tools and install it. 3. Obsolete SDK Tools: Sometimes, Appium requires older SDK tools that are now considered obsolete. You can enable these in Android Studio: - In the SDK Tools tab, check the option to Show Package Details. - Look for Android SDK Tools (Obsolete) and install it. 4. Verify Installation: After installing the necessary tools, verify that the `android` and `emulator` executables are present in the `D:\Android\Sdk\tools` and `D:\Android\Sdk\emulator` directories respectively 5. Update Environment Variables: Ensure that your system's `PATH` environment variable includes the paths to the `tools` and `emulator` directories. --
@rajareddy2342-q9g
@rajareddy2342-q9g 2 ай бұрын
I have downloaded Android studio in windows 11 the latest version available at(14-10-2024) i did not set the path but I can able to create the virtual device and run the virtual device successfully.
@RaghavPal
@RaghavPal 2 ай бұрын
Raja Android Studio Setup You've successfully set up Android Studio on Windows 11 and can run virtual devices without issues. Path Not Set You didn't set the path, but it's recommended to set environment variables for command-line tools like adb and sdkmanager. Set Path? If you don't need command-line tools, you're fine.
@rajareddy2342-q9g
@rajareddy2342-q9g 2 ай бұрын
@@RaghavPal windows 10 I am not able to see that sdk and adb files
@RaghavPal
@RaghavPal 2 ай бұрын
Raja Possible Reasons: Incorrect SDK installation or extraction Environment variables not set properly Troubleshooting Steps: Check SDK installation in Android Studio settings. Verify environment variables and add SDK path if necessary. Check manual SDK and ADB file locations. -
@rajareddy2342-q9g
@rajareddy2342-q9g 2 ай бұрын
@@RaghavPal Thank you for your response. I will try in that way.
@SouravP-n2r
@SouravP-n2r 13 күн бұрын
Hi Sir, after doing this setup after giving the command "appium-doctor --android " for with the emulator android also showing as missing WARN AppiumDoctor x android, emulator could NOT be found in D:\android! Will it be an issue in the upcoming to start the upcoming sessions ? Please help me to check this thank you 😊
@RaghavPal
@RaghavPal 13 күн бұрын
Yes Sourav, don't worry on this, will show how to add emulator in coming sessions. Still if you can check the following: Here’s how to fix the issue step by step: 1. Check Android SDK Path: - Verify that the Android SDK is installed in the specified location (`D:\android`). 2. Update Environment Variables: - Add the Android SDK’s `tools`, `platform-tools`, and `emulator` directories to the `PATH` environment variable. 3. Verify Emulator Path: - Ensure the `emulator` folder exists inside your SDK directory (`D:\android\emulator`). 4. Install Android Tools: - Open Android Studio -> SDK Manager -> Install "Android SDK Tools" and "Emulator". 5. Restart Command Prompt: - Close and reopen your terminal for environment changes to apply. 6. Run Appium Doctor Again: - Use `appium-doctor --android` to verify the setup.
@jallaboomesh
@jallaboomesh 8 ай бұрын
Hi Raghav, Really good explanation. Thank you very much 🙂
@RaghavPal
@RaghavPal 8 ай бұрын
You're most welcome Srinivas
@benjamin2713
@benjamin2713 2 ай бұрын
54:00 Then the sdkmanager command is not recognized anymore!
@RaghavPal
@RaghavPal 2 ай бұрын
will need to check more details on this
@benjamin2713
@benjamin2713 Ай бұрын
For anyone struggling with this...I had to add %ANDROID_HOME%\cmdline-tools\latest\bin to the path variables to get it to work.
@benjamin2713
@benjamin2713 Ай бұрын
Had to add "%ANDROID_HOME%\cmdline-tools\latest\bin" env path variable to get it to work.
@RaghavPal
@RaghavPal Ай бұрын
Great to know it worked
@PrajwalJorapur
@PrajwalJorapur 4 ай бұрын
In my case : - X android not found it showing in appium-doctor --android. In first video you are getting android not found , but in second video after entering "appium-doctor --android" , android was found ,can you tell what you have done for that.
@RaghavPal
@RaghavPal 4 ай бұрын
Prajwal I may not recall. If you can give the timestamps in both video I can try to check. In general i try no step is missed. I try to record the troubleshooting steps as well. Can check again
@pnarsar4705
@pnarsar4705 2 ай бұрын
Thanks for sharing. I did everything but when i check appium-doctor --android on command line, i see "android could NOT be found in C:\Users\..\cmdline-tools\latest\bin! " how to fix it?
@RaghavPal
@RaghavPal 2 ай бұрын
Steps to fix the issue with Appium Doctor not finding the Android SDK: Step 1: Verify Android SDK Installation Ensure the Android SDK is installed. The default path is usually: C:\Users\\AppData\Local\Android\Sdk Step 2: Update Environment Variables Set ANDROID_HOME: Right-click on This PC > Properties > Advanced system settings > Environment Variables. Under System variables, click New: Variable name: ANDROID_HOME Variable value: C:\Users\\AppData\Local\Android\Sdk Update Path: In the System variables section, find Path, select it, and click Edit. Add the following paths: %ANDROID_HOME%\platform-tools %ANDROID_HOME%\tools %ANDROID_HOME%\cmdline-tools\latest\bin Step 3: Verify Configuration Open a new Command Prompt. Run appium-doctor --android to check if the issue is resolved Step 4: Install Command Line Tools (if necessary) Open Android Studio, go to SDK Manager, and ensure Android SDK Command-line Tools is installed Step 5: Restart (if necessary) Restart your computer to apply changes -
@STD2580
@STD2580 7 ай бұрын
Hi Raghav, on mac machine, i had set the android_home and saved it and then android_home is not detected in terminal
@RaghavPal
@RaghavPal 7 ай бұрын
Sudheer did you add the variables in the env file and saved it. Check the names and paths again. Also after this try to check on a new terminal window. If you still face issues, send me your steps
@DeveloperMUJIpass
@DeveloperMUJIpass 4 ай бұрын
This is a great tutorial, will there be a tutorial also for iOS?
@RaghavPal
@RaghavPal 4 ай бұрын
Yes, can check here - automationstepbystep.com/
@NavneetMishra-q3k
@NavneetMishra-q3k 7 ай бұрын
I have installed Appium apps that version - 1.15.1 But not visible in cmd, showing an error - 'appium' is not recognized as an internal or external command, operable program or batch file.
@RaghavPal
@RaghavPal 7 ай бұрын
Navneet The error message "'appium' is not recognized as an internal or external command, operable program or batch file" indicates that the system cannot find the "appium" command in the current environment. This typically happens when Appium is either not installed or not added to the system's PATH variable. Let's troubleshoot this issue step by step: 1. Check Appium Installation: - First, ensure that you have correctly installed Appium. If not, download and install it from the official website. - Make sure you've followed the installation instructions for your operating system. 2. Add Appium to PATH: - The PATH environment variable contains a list of directories where the system looks for executable files. - To add Appium to the PATH: - Open the System Properties (you can search for it in the Start menu). - Go to the Advanced tab and click on the Environment Variables button. - In the System Variables section, find the Path variable and click Edit. - Add the path to the directory where Appium is installed (e.g., `C:\Program Files odejs`) to the list of paths. Separate multiple paths with semicolons. - Click OK to save the changes. - Restart your command prompt or terminal for the changes to take effect. 3. Verify Installation: - Open a new command prompt or terminal window. - Type `appium --version` and press Enter. - If you see the version number (e.g., "1.15.1"), then Appium is correctly installed and added to the PATH. 4. Check Node.js Installation: - Appium relies on Node.js. Ensure that Node.js is installed and also added to the PATH. - You can download Node.js from the official website and follow the installation instructions. 5. Restart Command Prompt or Terminal: - Sometimes, changes to the PATH variable require restarting the command prompt or terminal. - Close any existing command prompt or terminal windows and open a new one. 6. Check for Typos: - Double-check that you're typing the command correctly. It should be `appium`, not `Appium` or any other variation. 7. Reinstall Appium (if necessary): - If none of the above steps work, consider uninstalling and reinstalling Appium. - Make sure to follow the installation instructions carefully. Remember to verify each step
@YohanesTedjaputra
@YohanesTedjaputra 4 ай бұрын
Hi Raghav, thank you for you great tutorial video. Could you help me, since I'm stuck on setting emulator. Already create folder platforms, platform-tools, emulator and add it to Path. But appium-doctor still has error android could NOT be found in ! and check "avdmanager list avd" got error "Error: Missing system image for Google APIs x86_64 nightwatch-android-11."
@RaghavPal
@RaghavPal 4 ай бұрын
Yohanes Let's break down the problem step by step: Step 1: Verify SDK Path You mentioned that you've added the `platforms`, `platform-tools`, and `emulator` folders to the `Path` environment variable. Double-check that the `SDK` path is correct and points to the root directory of your Android SDK installation. For example, if your Android SDK is installed at `C:\Users\YourUsername\AppData\Local\Android\Sdk`, your `SDK` path should be set to `C:\Users\YourUsername\AppData\Local\Android\Sdk`. Step 2: Check Android SDK Installation Make sure you have the Android SDK installed correctly. Open the Android SDK Manager (you can find it in the `SDK` path) and verify that the following components are installed: * Android SDK Platform-Tools * Android SDK Build-Tools * Android Emulator * Android SDK Platform (at least one platform, e.g., Android 11) If any of these components are missing, install them using the SDK Manager. Step 3: Check AVD Manager The error message "Error: Missing system image for Google APIs x86_64 nightwatch-android-11" suggests that the system image for Android 11 (x86_64) is missing. Open the AVD Manager (you can find it in the `SDK` path) and create a new Android Virtual Device (AVD). Choose the Android 11 (x86_64) system image and download it. This should resolve the error. Step 4: Verify Appium Doctor Run `appium-doctor` again to see if the error persists. If you still see the error "android could NOT be found in ", try the following: * Check that the `ANDROID_HOME` environment variable is set to the correct `SDK` path. * Verify that the `platform-tools` and `emulator` folders are in the `Path` environment variable. * Try running `appium-doctor` with the `--android-sdk` option, specifying the correct `SDK` path, like this: `appium-doctor --android-sdk=C:\Users\YourUsername\AppData\Local\Android\Sdk` --
@YohanesTedjaputra
@YohanesTedjaputra 4 ай бұрын
@@RaghavPal , thank you for you reply. Already solve the issue by installing android-30 version.
@nitinjawale1624
@nitinjawale1624 8 ай бұрын
Sir waiting for the next video and please make a complete session for mobile automation testing.
@RaghavPal
@RaghavPal 8 ай бұрын
Coming soon Nitin... keep learning
@nitinjawale1624
@nitinjawale1624 8 ай бұрын
@@RaghavPal Thank you sir
@sowmyakuruvella
@sowmyakuruvella 5 ай бұрын
I am getting this error when I tried to run the sdkmanager "platform-tools" "platforms;android-33" Warning: Failed to read or create install properties file. [=== ] 10% Installing Android SDK Platform 33 and it stops installation. What should I do?
@RaghavPal
@RaghavPal 5 ай бұрын
Sowmya Let's work through this problem step by step to resolve the error you're encountering with `sdkmanager`. ### Step 1: Check SDK Manager Installation Ensure that the SDK Manager is properly installed and accessible from your command line. You can verify this by running: ```bash sdkmanager --list ``` This command should list all available and installed packages. ### Step 2: Accept Licenses Sometimes, the issue arises due to unaccepted licenses. Run the following command to accept all SDK licenses: ```bash sdkmanager --licenses ``` Follow the prompts to accept the licenses. ### Step 3: Separate Commands Instead of running multiple package installations in a single command, try installing them separately: ```bash sdkmanager "platform-tools" sdkmanager "platforms;android-33" ``` This approach can help isolate the issue. ### Step 4: Check Permissions Ensure that you have the necessary permissions to read and write in the SDK installation directory. You can try running the commands with elevated privileges: ```bash sudo sdkmanager "platform-tools" sudo sdkmanager "platforms;android-33" ``` ### Step 5: Verify SDK Path Make sure that the SDK path is correctly set in your environment variables. You can check this by running: ```bash echo $ANDROID_HOME ``` Ensure that the path points to the correct SDK directory. ### Step 6: Update SDK Manager Ensure that you are using the latest version of the SDK Manager. You can update it by running: ```bash sdkmanager --update ``` ### Step 7: Manual Installation (Optional) If the above steps do not resolve the issue, you can manually download and install the required packages: 1. Go to the [Android SDK Downloads]( developer.android.com/studio#downloads ) page. 2. Download the required packages (e.g., platform-tools, platforms;android-33). 3. Extract and place them in the appropriate directories within your SDK installation path. ### Summary By following these steps, you should be able to resolve the error and successfully install the required packages. If you continue to face issues, please let me know, and we can explore further troubleshooting steps --
@Julia-t2s2r
@Julia-t2s2r 2 ай бұрын
It was great. Thank you!
@RaghavPal
@RaghavPal 2 ай бұрын
Glad you enjoyed it Julia
@fathimanazra1279
@fathimanazra1279 8 ай бұрын
hi sir which is better downloading android studio or SDK tools only ?
@RaghavPal
@RaghavPal 8 ай бұрын
Android Studio is a complete platform for android development. So if you only want to setup Android env for testing, can go with SDK tools only. In the next video i will also cover how to create Emulators without using Android Studio and with both
@potify3315
@potify3315 7 ай бұрын
Hi teacher, the teaching was really great, but I did not find how to fix the error ✖ android could NOT be found in C:\android!
@RaghavPal
@RaghavPal 7 ай бұрын
I believe it is due to ANDROID_HOME env variables is either not set or the path is not proper. Please check with the video again
@kasthurimahes7693
@kasthurimahes7693 2 ай бұрын
how to add appium_HOME in environment variable?
@RaghavPal
@RaghavPal 2 ай бұрын
Kasthuri To add APPIUM_HOME to your environment variables: Windows: Right-click "This PC" > "Properties" > "Advanced system settings" > "Environment Variables." Click "New" under "System variables," set Variable name to APPIUM_HOME and Variable value to your Appium path. Click "OK" and verify with echo %APPIUM_HOME% in Command Prompt. macOS/Linux: Open Terminal and edit your profile file (e.g., ~/.bash_profile). Add export APPIUM_HOME=/path/to/appium. Save and run source ~/.bash_profile to apply. Verify with echo $APPIUM_HOME. -
@amankrshah07
@amankrshah07 6 ай бұрын
Hi Ragav, Thank you for the awesome video. I'm encountering an error and could use your help: " C:\Users\sabhyata>sdkmanager --list 'sdkmanager' is not recognized as an internal or external command, operable program or batch file." I've followed all the previous steps. Can you please let me know how to fix this? Thanks
@amankrshah07
@amankrshah07 6 ай бұрын
also i have tried the bellow step Microsoft Windows [Version 10.0.22631.3672] (c) Microsoft Corporation. All rights reserved. E:\android\cmdline-tools\latest\bin>sdkmanager --list Error: LinkageError occurred while loading main class com.android.sdklib.tool.sdkmanager.SdkManagerCli java.lang.UnsupportedClassVersionError: com/android/sdklib/tool/sdkmanager/SdkManagerCli has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 60.0 E:\android\cmdline-tools\latest\bin>
@RaghavPal
@RaghavPal 6 ай бұрын
Aman It seems you're encountering a couple of issues related to the Android SDK and `sdkmanager`. Let's address them step by step: 1. 'sdkmanager' is not recognized as an internal or external command: - This error occurs when the system cannot find the `sdkmanager` executable in your system's PATH. - To fix this, you need to add the correct path to the Android SDK tools directory to your system's environment variables. - Follow these steps: - Right-click on "My Computer" (or "This PC") and select "Properties." - Click on "Advanced system settings." - In the "Advanced" tab, click on the "Environment Variables" button. - Under "System variables," find the "Path" variable and click "Edit." - Add the path to your Android SDK tools directory (usually something like `C:\Users\\AppData\Local\Android\sdk\tools\bin`). - Make sure to separate multiple paths with semicolons. - Click "OK" to save the changes. - Open a new Command Prompt window and try running `sdkmanager --list` again. 2. Java Runtime Version Error: - The second error indicates that the `SdkManagerCli` class has been compiled with a newer version of Java than the one installed on your system. - You'll need to ensure that you have the correct Java version installed. - Follow these steps: - Make sure you have the latest JDK (Java Development Kit) installed on your system. - Set the `JAVA_HOME` environment variable to point to the JDK installation directory. - Update your system's PATH variable to include the `bin` directory of the JDK. - Restart your Command Prompt and try running `sdkmanager --list` again. Remember to replace `` with your actual Windows username --
@marwanm8942
@marwanm8942 7 ай бұрын
you are always a rock Raghav with a high-quality tutorial 👍
@RaghavPal
@RaghavPal 7 ай бұрын
Thank you so much Marwan
@sreeni417
@sreeni417 8 ай бұрын
Hi Raghav, Can you please make a Playlist on Playwright with Typescript and cucumber BDD framework.
@RaghavPal
@RaghavPal 8 ай бұрын
I will plan Sreeni
@vinaypandey4752
@vinaypandey4752 3 ай бұрын
Hi @Raghav, Can you plan paid series for Appium, from zero to hero. :)
@RaghavPal
@RaghavPal 3 ай бұрын
Vinay if i create.. will add on this channel
@zeisscai9311
@zeisscai9311 5 ай бұрын
thank you for video❤
@RaghavPal
@RaghavPal 5 ай бұрын
You're welcome
@essoapp
@essoapp 8 ай бұрын
please upload the next , next episodes on the next day , please try to complete this tutorial soon
@RaghavPal
@RaghavPal 8 ай бұрын
I will try
@PDhakad4
@PDhakad4 8 ай бұрын
Hi boss thank you for video
@RaghavPal
@RaghavPal 8 ай бұрын
Most welcome
@GracyIma
@GracyIma 8 ай бұрын
Sir please kindly complete it thank you
@RaghavPal
@RaghavPal 8 ай бұрын
Yes Grace.. in the process
@AbhisekhSahoo36
@AbhisekhSahoo36 17 күн бұрын
Don't do this way installing appium instead download the appium desktop version so that you can make sure to be error free with bugs
@RaghavPal
@RaghavPal 17 күн бұрын
will need to use Appium Inspector for that Abhishek.. its covered in later videos of this series
@AbhisekhSahoo36
@AbhisekhSahoo36 17 күн бұрын
@RaghavPal Literally I'm getting frustrated as of now because of so many errors are popping out and I need to fix them by adding their path to environmental variables, still love your videos of explaining it. I just want to know a thing that I have to use kotlin for case testing in appium so what can I do to like test case it!?
@RaghavPal
@RaghavPal 16 күн бұрын
Here’s what you can do: 1. Setup Appium: Install Appium server and Appium Inspector 2. Install Kotlin: Ensure Kotlin is set up in your IDE (like IntelliJ IDEA) 3. Add Dependencies: Add Appium and TestNG/JUnit libraries in your project’s `build.gradle` 4. Write Tests: Create a Kotlin class and write Appium scripts using `AppiumDriver` 5. Run Tests: Execute the tests in your IDE or terminal 6. Debug & Repeat: Fix issues and refine your test cases -
@awpshko
@awpshko 5 ай бұрын
There is one thing has been confusing me for 2 days: appium-doctor. In your previous video and part 2 doc-file you mention "npm install -g appium-doctor" which was released 2 years ago. But in the reality you use @appium/doctor (npm i -g @appium/doctor). Both use "appium-doctor" command but 1 fails checking installation and PATHs for "--android". It will be great if you could update the doc file with this info.
@RaghavPal
@RaghavPal 5 ай бұрын
Sergei Let's break down the issue step by step: Step 1: Identify the difference between the two installations The main difference between the two installations is the package name: * `appium-doctor` (old package) * `@appium/doctor` (new package) The `@` symbol in the new package name indicates that it's a scoped package, which is a way to namespace packages in npm. Step 2: Investigate the behavior of both installations The user reports that both installations allow them to use the `appium-doctor` command. However, the old installation (`appium-doctor`) fails to check the installation and PATHs for the `--android` option. Step 3: Determine the correct installation method Based on the user's experience, it seems that the correct installation method is `npm i -g @appium/doctor`. This is likely the recommended installation method by the Appium team, as it's the one that works correctly with the `--android` option. Step 4: Update the documentation As requested by the user, the documentation should be updated to reflect the correct installation method. The old article should be updated to remove the reference to `npm install -g appium-doctor` and instead recommend `npm i -g @appium/doctor`. Conclusion The correct installation method for `appium-doctor` is `npm i -g @appium/doctor`. The old package `appium-doctor` is likely deprecated and should not be used -
1 | Appium Step by Step | Basic Setup on Windows and Mac OS
35:26
Automation Step by Step
Рет қаралды 33 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
Мобильные автотесты с нуля | Appium Android
1:15:53
Mobile Automation Testing using WebdriverIO
1:29:15
SDET Unicorns by Dilpreet Johal
Рет қаралды 37 М.
NATO intercepts Russian planes / Strike on the marines
14:04
NEXTA Live
Рет қаралды 602 М.
6 | Appium Step by Step | How to setup and use Appium Inspector
48:35
Automation Step by Step
Рет қаралды 24 М.
Новый год 2025 на ТНТ "ComedyVision!" @ComedyClubRussia
1:16:27
4 | Appium Step by Step | How to create Android Virtual Device
53:28
Automation Step by Step
Рет қаралды 10 М.
Mobile Test Automation Tools To Know - Best Mobile Test Automation Tools
18:11
Software Testing by Daniel Knott
Рет қаралды 15 М.
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.