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) - 定位的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15JavaMailSender是什么,怎么使用?-icode9专业技术文章分享
- 2024-11-15JWT 用户校验学习:从入门到实践
- 2024-11-15Nest学习:新手入门全面指南
- 2024-11-15RestfulAPI学习:新手入门指南
- 2024-11-15Server Component学习:入门教程与实践指南
- 2024-11-15动态路由入门:新手必读指南
- 2024-11-15JWT 用户校验入门:轻松掌握JWT认证基础
- 2024-11-15Nest后端开发入门指南
- 2024-11-15Nest后端开发入门教程
- 2024-11-15RestfulAPI入门:新手快速上手指南