测试积点老人 发表于 2018-9-20 13:11:52

appium+python 遇到的问题

1.在运行代码是出现的错误
Traceback (most recent call last): File "ITest0623.py", line 9, in <module> from appium import webdriver ImportError: No module named appium

在脚本中会有:from appium import webdriver
第一次运行时可能会遇到这样的error:No module named appium
之所以会报这样的error是因为没有装client
client下载地址 :https://github.com/appium/python-client

下载下来后,python setup.py install
还解决不了
原因是没有配置Project Interpreter。步骤如下:

    PyCharm->Preferences->Project Interpreter

    双击pip,看到 Available Packages窗口。输入appium,选择“appium-python-client”安装

    PyCharm的运行结果

libingyu135 发表于 2018-9-21 10:10:59

解决了啊,真棒

qqq911 发表于 2018-9-21 10:46:37

上点图片

梦想家 发表于 2018-9-21 11:36:43

赞:handshake

jingzizx 发表于 2018-9-21 12:12:12

支持!
页: [1]
查看完整版本: appium+python 遇到的问题