module 'appium.webdriver' has no attribute 'Remote'
See original GitHub issueThe problem
I have the same issue as this: https://github.com/appium/python-client/issues/476. His solution is not applicable to my case.
Here is the shortest possible code that reproduces the issue:
from appium import webdriver
driver = webdriver.Remote('http://localhost:4723/wd/hub', [])
The result is like this:
C:\Python36\python.exe C:/Users/rsheink/PycharmProjects/untitled/bla.py
Traceback (most recent call last):
File "C:/Users/rsheink/PycharmProjects/untitled/bla.py", line 3, in <module>
driver = webdriver.Remote('http://localhost:4723/wd/hub', [])
AttributeError: module 'appium.webdriver' has no attribute 'Remote'
Process finished with exit code 1
Please help 😃
Issue Analytics
- State:
- Created 3 years ago
- Comments:25 (10 by maintainers)
Top Results From Across the Web
module 'appium.webdriver' has no attribute 'TouchActions ...
It should be like this: from appium.webdriver.common.touch_action import TouchAction. Check that your code is up to date to the latest ...
Read more >start_activity not working - Support - Appium Discuss
I have been trying to use start_activity but it doesn't seem to work for me from appium import webdriver def setup(self): ...
Read more >webdriver package — Python client 1.0 1.0 documentation
webdriver.appium_service module ... Check if the service is listening on the given/default host/port. The fact, that the service is running, does not always ......
Read more >module 'appium.webdriver' has no attribute 'TouchActions'
I've tried to use the TouchActions from Appium to perform a horizontal banner swipe, but I received the error: AttributeError: module 'appium.webdriver' has ......
Read more >module 'appium.webdriver' has no attribute 'Remote'-阿里云 ...
Appium问题解决方案(2)- AttributeError:module 'appium.webdriver' has no attribute 'Remote' · 背景 · 步骤一 · 步骤二 · 步骤三 · 然后 · 结论 ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This looks like a packaging issue. We’ll republish the patched package soon
Thanks for the report! 1.0.1 should fix this.
py.typed
for type hint is also inappium/webdrive