Appium脚本的运行
1.Pycharm新建一个test_appium包,并在包中新建test_xueqiu.py文件。
2.将上一步我们录制好的脚本代码,粘贴到test_xueqiu.py文件中。
3.安装Appium-Python-Clinte模块。
4.打开Nox模拟器。
5.打开Appium Desktop,点击Start Server。
6.回到Pycharm,test_xueqiu.py右键,点击run。稍等片刻程序自动运行
我们会看到一个报错
selenium.common.exceptions.NoSuchElementException: Message: An element could not be located on the page using the given search parameters.
寻找原因,是某个元素没有找到。
这个元素在我们录制时,是一个活动弹窗。现在活动过期弹窗消失,我们注释这段代码即可。
有时则是因为打开页面的过程中,加载速度比较慢,导致找不到元素。我们可以加一个隐形等待xx秒(代码加在
driver=webdriver.Remote()
下方)
# 隐形等待10s
driver.implicitly_wait(10)
自动生成的一般都是比较简陋的脚本,那么接下来,我们对脚本进行一定的改造
Appium脚本的简单改造之第一步
# This sample code uses the Appium python client
# pip install Appium-Python-Client
# Then you can paste this into a file and simply run with Python
import time
from appium import webdriver
class TestXueqiu:
# 初始化需要的准备工作
def setup(self):
caps = {}
caps["platformName"] = "Android"
caps["deviceName"] = "Nox"
caps["appPackage"] = "com.xueqiu.android"
caps["appActivity"] = ".view.WelcomeActivityAlias"
caps["ensureWebviewsHavePages"] = True
# 将driver变为实例变量。后面需要用到
self.driver = webdriver.Remote("http://localhost:4723/wd/hub", caps)
self.driver.implicitly_wait(10)
def test_profile(self):
el1 = self.driver.find_element_by_id("com.xueqiu.android:id/tv_agree")
el1.click()
# el2 = driver.find_element_by_id("com.xueqiu.android:id/ib_close")
# el2.click()
el3 = self.driver.find_element_by_xpath("/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.view.ViewGroup/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.TabHost/android.widget.LinearLayout/android.widget.TabWidget/android.widget.RelativeLayout[2]/android.widget.ImageView")
el3.click()
# 收尾工作
def teardown(self):
# 为了观察,睡眠10秒后再退出
time.sleep(10)
self.driver.quit()
有时我们在运行时,会出现权限的弹框,如获取IMEI号、获取电话和短信权限等。可以在脚本中点击这个元素同意,当然也有一种比较省力的方法,使用autoGrantPermissions属性自动授予权限
caps["autoGrantPermissions"] = True
如果你加入了这个属性,那么之前一些点击权限的元素操作可以注释或删除掉
Appium脚本的简单改造之第二步
我们看到find_element_by_xpath非常的长,看起来给人一种非常不舒服的感觉。同时也不利于之后的维护工作。那么我们怎么获取到这个元素的类型呢?
el3 = self.driver.find_element_by_xpath("/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.view.ViewGroup/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.TabHost/android.widget.LinearLayout/android.widget.TabWidget/android.widget.RelativeLayout[2]/android.widget.ImageView")
有两种方法:
1.使用Appium Desktop帮助我们分析
我们点击行情,看到右侧的resource-id
为
com.xueqiu.android:id/tab_icon
。那么这个tab_icon
可以是我们可以注意的对象。也就是说可以通过id定位找到这个元素
接下来,我们点击Appium Desktop上方放大镜功能,输入id tab_icon,搜索后可以看到有5个元素,分别对应了雪球下方导航栏的五个元素。其中第二个是
那么我们是否可以这样写呢?
el3 = self.driver.find_element_by_id("tab_icon")[1]
el3.click()
如果这样写,那么就会掉入一个坑里。因为这样写会报错:
TypeError: 'WebElement' object is not subscriptable
翻译过来就是说,WebElement对象不可下标。
find_element将始终返回单个WebElement。因此,无法通过任何索引访问元素,例如[0]、[1]等作为 index。只有list才可以做索引
所以,我们不能使用find_element_by_id
,而需要使用find_elements_by_id
,这样返回的才是list而不是单个WebElement。
el3 = self.driver.find_elements_by_id("tab_icon")[1]
el3.click()
2.使用AndroidSDK\tools\bin\uiautomatorviewer.bat工具,它类似于Chrome的检查功能。
首先启动Nox,打开雪球APP。双击运行uiautomatorviewer.bat
,点击左上角第二个图标进行屏幕获取。
同样的,我们定位到需要的元素,右侧查看元素属性。
我们可以发现uiautomatorviewer比Appium运行速度快。需要哪个工具可以根据自己情况选择。
这里要注意,使用xpath层级定位时,uiautomatorviewer会出现缺少层级的情况,建议使用Appium Desktop检查层级关系
- Tips:
1.如果不设置参数,即默认,那么测试后将停止并清除应用数据,不卸载apk
2.fullReset = True
时,在会话开始前 测试后 停止 app,清除 app 数据并卸载 apk
3.noReset = True
时,不停止应用程序,不清除应用数据,不卸载 apk