其他分享
首页 > 其他分享> > 通过元素定位获取元素的信息(APP端)

通过元素定位获取元素的信息(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)

标签:定位,text,APP,元素,id,location,print,vlaue,find
来源: https://blog.csdn.net/weixin_46183674/article/details/111596731