I face error in setting remote path to run Selenium script How to solve it Iam able to connect appium inspector to real device but not Selenium
@RaghavPal2 ай бұрын
It seems like you're facing an issue with setting the remote path to run a Selenium script using Appium. You've successfully connected Appium Inspector to a real device, but you're unable to do so with Selenium. Possible Causes Before we dive into the solution, let's identify some possible causes for this issue: Incorrect remote path configuration Incompatible Selenium version with Appium Missing dependencies or libraries Incorrect device configuration Troubleshooting Steps To resolve this issue, follow these steps: 1. Check Remote Path Configuration Verify that the remote path is correctly set in your Appium configuration. Ensure that the path points to the correct Selenium server instance. 2. Verify Selenium Version Compatibility Check the Selenium version you're using is compatible with the Appium version. You can find the compatible versions in the Appium documentation. 3. Check Dependencies and Libraries Make sure all required dependencies and libraries are installed and up-to-date. This includes the Selenium Java client, Appium Java client, and any other dependencies specific to your project. 4. Device Configuration Double-check your device configuration, including the device name, platform, and version. Ensure that the device is properly connected and recognized by Appium. -
@premps62725 ай бұрын
I have set the path for android from studio, however, when I'm trying to connect a real device abd and sdk manager were unfindable in terminal. this is the path which was set in zsh from studio"/Users/premtheetla/Library/Android/sdk". can u pls help me on this.
@RaghavPal5 ай бұрын
Prem If you've set the Android SDK path in Android Studio but can't find the `sdkmanager` or `adb` commands in your terminal, here's how to resolve it: 1. Android Studio Method: - Open Android Studio. - Go to File ➡️ Settings ➡️ Appearance & Behavior ➡️ System Settings ➡️ Android SDK. - In the SDK Tools tab, make sure you have the Android SDK Command-line Tools (latest) installed. If not, install or update them. - Click Apply and restart Android Studio 2. Alternative Method (Without Android Studio): - Open a terminal. - Run the following commands: ```bash sdkmanager --update sdkmanager --install "cmdline-tools;latest" flutter doctor --android-licenses ``` - This should resolve the issue even if you're not using Android Studio directly Remember to adjust the paths and commands according to your system configuration -
@real_world_view_6 ай бұрын
Nice Work
@RaghavPal6 ай бұрын
Thanks Shoaib
@KRISHINNOVOO3 ай бұрын
Hi bro could you please make a video on setting up and running both the Appium server and a Python automation script on the same Android device? I Mean... In Same Android testing (Appium server and python script execution) have to run in background In the same Android mobile Automation work also have to run without using computer Is it possible...? If it is possible make video on it...
@RaghavPal3 ай бұрын
I will plan Krish
@KRISHINNOVOO3 ай бұрын
@@RaghavPal I am waiting for it...
@KRISHINNOVOO2 ай бұрын
@@RaghavPal The output would be like this kzbin.infoE9ZSnQfWyvA?si=C-TUkkvxOhBDvNLp Waiting for it
@KRISHINNOVOO2 ай бұрын
@@RaghavPal The output would be like this kzbin.infoE9ZSnQfWyvA?si=C-TUkkvxOhBDvNLp Waiting for it...
@RaghavPal2 ай бұрын
ok, will check
@al-fareed34203 ай бұрын
Thanks for the video, I am able to connect to real android device, but I am not able to run the script Error: "Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure"
@RaghavPal3 ай бұрын
Hello The error message "Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure" suggests that there are two potential causes for the issue: Possible Cause 1: Invalid Address of the Remote Server Check that the Appium server is running and the address is correct. You can try restarting the Appium server and ensure that the IP address and port number are correct in your script. Verify that the device is connected to the same network as the machine running the Appium server Possible Cause 2: Browser Start-up Failure Ensure that the Android device has the correct version of the Chrome or Browser app installed, depending on the browser you are using for testing. Check that the browser is not already running on the device before running the script Additional Troubleshooting Steps Check the Appium server logs for more detailed error messages that may help identify the issue. Verify that the device is properly configured for testing by checking the device's developer options and ensuring that USB debugging is enabled Try running the script with a different device or emulator to isolate the issue -
@MARTINSOLUDAYO7 ай бұрын
Good work sir, please upload the 6 and 7 sir
@RaghavPal7 ай бұрын
Coming soon
@andrewgraham69942 ай бұрын
ok so I attempted to use instagram apk, and it fails to complete install, can you please explain why some apk work, and some do not? thanks in advance, and great videos my guy!
@RaghavPal2 ай бұрын
Andrew There are a number of reasons why an APK file might not work on an Android device. Here are a few possibilities: The APK file is corrupt or damaged The APK file is not compatible with the device's operating system version The APK file is missing required permissions The device does not have enough storage space to install the APK file There is a conflict with another application on the device If you are having trouble installing an APK file, you can try troubleshooting the issue by checking for these common problems You can also search online for more specific information about the APK file you are trying to install -