如果你还想从头学起Appium,可以看看这个系列的文章哦!
https://www.cnblogs.com/poloyy/category/1693896.html
快速入门栗子:boss直聘 app
环境要求:Android
栗子一:定位【自动化测试】 代码test = driver.find_element_by_class_name("android.widget.TextView") print(test.text) test = driver.find_element_by_xpath("//*[@resource-id='com.hpbr.bosszhipin:id/title_container']/android.widget.FrameLayout/android.widget.TextView") print(test.text) test = driver.find_element_by_xpath("//*[contains(@text,'自动化测试')]") print(test.text)