appuim的简单使用及实例
Posted larry222
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了appuim的简单使用及实例相关的知识,希望对你有一定的参考价值。
1、学习链接
http://www.testclass.net/appium/
2、
这是由于版本webdriver版本和appium的版本对不上所致。
先确定你webdriver用的是selenium中的还是Appium-python-client中的.
1.如果你用的是selenium,appium使用的是1.5版本的,则将selenium卸载,下载selenium版本3.3的
比如:卸载:pip uninstall selenium 安装:pip install selenium==3.3.1
2.如果是Appium-python-client,下面是与appium对应的版本
Appium-python-client 中0.32-0.39对应的是appium版本
Appium-python-client 中0.22-0.31对应的是appium1.5版本
Appium-python-client中0.14对应是appium1.3.6版本
Appium-python-client中0.15-0.21对应是appium1.4版本
我是appium使用的是1.5版本的,降级安装3.3.1
3、打开appium,但是不启动server,执行脚步,成功真机启动微信
# coding: utf-8
from selenium import webdriver
import time
success = True
desired_caps = {}
desired_caps[‘appium-version‘] = ‘1.5‘
desired_caps[‘platformName‘] = ‘android‘
desired_caps[‘platformVersion‘] = ‘8.0.0‘
desired_caps[‘deviceName‘] = ‘Android Emulator‘
desired_caps[‘appPackage‘] = ‘com.tencent.mm‘
desired_caps[‘appActivity‘] = ‘.ui.LauncherUI‘
desired_caps[‘session-override‘] = True
wd = webdriver.Remote(‘http://0.0.0.0:4723/wd/hub‘, desired_caps)
wd.implicitly_wait(60)
以上是关于appuim的简单使用及实例的主要内容,如果未能解决你的问题,请参考以下文章
Python 自动化 - 浏览器chrome打开F12开发者工具自动Paused in debugger调试导致无法查看网站资源问题原因及解决方法,javascript反调试问题处理实例演示(代码片段