Appium使用记录
通过坐标点击
官方文档:https://appium.io/docs/en/commands/interactions/touch/tap/
1 | from appium.webdriver.common.touch_action import TouchAction |
获取 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 |