-
Notifications
You must be signed in to change notification settings - Fork 568
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Appium-Python issue while connecting to emulater in android studio #840
Comments
Please include the full output of your appium log. It looks like the Appium server is not actually running. |
|
Appium 1 is no longer supported. Please try with Appium 2 |
@mohanrajreese, any chance you checked if this issue still reproduce with appium 2? |
closing as long no response since #840 (comment) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The problem
The problem i'm facing here is im getting the following error [
**urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='127.0.0.1', port=4723): Max retries exceeded with url: /wd/hub/session (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fd691cf0af0>: Failed to establish a new connection: [Errno 111] Connection refused'))**
] while connecting appium python code to android emulater deviceBriefly describe the issue you are experiencing (or the feature you want to see added to Appium). Tell us what you were trying to do and what happened instead. Remember, this is not a place to ask questions. For that, go to http://discuss.appium.io!
Environment
Link to Appium Logs
Code To reproduce issue
`from time import sleep
from appium import webdriver
from appium.webdriver.common.appiumby import AppiumBy
desired_caps = {
"deviceName": "Pixel 4a API 30",
"platformName": "Android",
"udid": "emulator-5554",
"version": 11,
"app": "C:\Users\lenovo\Downloads\com.indigo.new.apk"
}
driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)`
The text was updated successfully, but these errors were encountered: