获取元素的文本内容:
方法: text
text_vlaue = driver.find_elements_by_class_name("android.widget.TextView")
for i in text_vlaue:
print(i.text)
方法:location
get_value = driver.find_element_by_id("com.android.settings:id/search")
打印搜索按钮在屏幕上的坐标
print(get_value.location)