Appium中webdriver的Remote不能调用怎么解决

D:\Python368\python.exe C:/Users/张桃桃/PycharmProjects/pythonProject2/APP/case_01.py
Traceback (most recent call last):
File “C:/Users/张桃桃/PycharmProjects/pythonProject2/APP/case_01.py”, line 11, in
driver = webdriver.Remote(‘http://localhost:4723/wd/hub’, desired_caps)
AttributeError: module ‘appium.webdriver.webdriver’ has no attribute ‘Remote’

Process finished with exit code 1

你导入错误了,应该是’from appium import webdriver’

谢谢