1 appium元素获取技巧 # 就是页面滑动 driver.swipe(x1, y1, x1, y2, t) # 拿到所有跟元素有关的标签,其实是个列表 driver.find_elements_by_class_name('android.widget.TextView') # 按照下标拿数据并点击 driver.find_elements_by_class_name('android.widget.TextView')[0].click() #层及定位 element = driver.…