self.driver.start_recording_screen()
self.driver.stop_recording_screen()
在页面上搜索元素
el = self.driver.find_element_by_accessibility_id(‘SomeAccessibilityID‘)
在页面上搜索一组元素
el = self.driver.find_elements_by_accessibility_id(‘SomeAccessibilityID‘)
Appium命令-Screen Recording,Element
原文:https://www.cnblogs.com/muxs/p/15185358.html