通过元素定位获取元素的信息(APP端)

获取元素的文本内容:

方法: 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)
上一篇:列表与元组


下一篇:Python入门小笔记(五)