0%

Appium使用记录

Appium使用记录

通过坐标点击

官方文档:https://appium.io/docs/en/commands/interactions/touch/tap/

1
2
3
from appium.webdriver.common.touch_action import TouchAction

TouchAction(self.driver).tap(x=529, y=1170).perform()

获取 content-desc 中的内容

https://appium.io/docs/en/commands/element/attributes/attribute/

1
self.driver.find_element(By.XPATH, "//android.view.ViewGroup[contains(@content-desc, '工作通知')]").get_attribute("contentDescription")

页面原始 xml 信息

https://appium.io/docs/en/commands/session/source/

1
source = self.driver.page_source

查找元素

https://www.cnblogs.com/dy99/p/14287543.html