Appium自动化(4) - 定位
2021/7/18 6:07:39
本文主要是介绍Appium自动化(4) - 定位,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
## # 可定位的控件属性 |
---|
## 定位入门 |
软件:微博国际版 |
```python3 |
import time |
from appium import webdriver |
desired_caps = { |
"platformName": "android", |
"deviceName": "bc3ef5d5", |
"appPackage": "com.weico.international", |
"appActivity": ".activity.MainFragmentActivity", |
"noReset": True, |
"newCommandTimeout": 6000 |
} |
driver = webdriver.Remote("http://localhost:4723/wd/hub", desired_caps) |
test = driver.find_element_by_class_name("android.widget.TextView") |
print(test) |
print("打印1:" + test.text) |
test = driver.find_element_by_xpath("/hierarchy/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/android.widget.LinearLayout/android.widget.FrameLayout/androidx.drawerlayout.widget.DrawerLayout/android.view.ViewGroup/android.widget.RelativeLayout/android.widget.TabHost/android.widget.FrameLayout/android.view.ViewGroup/android.widget.FrameLayout/android.widget.FrameLayout/androidx.recyclerview.widget.RecyclerView/android.widget.LinearLayout[2]/android.widget.RelativeLayout[1]/android.widget.TextView[1]") |
print("打印2:" + test.text) |
test = driver.find_element_by_xpath("//*[contains(@text,'冈瓦纳')]") |
print("打印3:" + test.text) |
>>> |
打印1:查看新微博 |
打印2:冈瓦纳 |
打印3:冈瓦纳 |
``` |
为什么打印1是,查看新微博? |
因为多个class_name的名字是一样的,find_element_by 只返回第一个。如果要全部返回,则改成find_elements_by 匹配多个元素,再更具索引去匹配 |
```python3 |
driver = webdriver.Remote("http://localhost:4723/wd/hub", desired_caps) |
test = driver.find_elements_by_class_name("android.widget.TextView") |
for i in test: |
print("打印1:" + i.text) |
>>> |
打印1:查看新微博 |
打印1:全部 |
打印1: |
打印1:烫师傅 |
打印1:11 分钟前 |
打印1:iQOO 3 5G性能旗舰 |
... |
``` |
这篇关于Appium自动化(4) - 定位的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11cursor试用出现:Too many free trial accounts used on this machine 的解决方法
- 2025-01-11百万架构师第十四课:源码分析:Spring 源码分析:深入分析IOC那些鲜为人知的细节|JavaGuide
- 2025-01-11不得不了解的高效AI办公工具API
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?