Appium IOS自动化锁屏与解锁

from appium import webdriver

from time import sleep

from appium.webdriver.common.appiumby import AppiumBy

from appium.webdriver.common.touch_action import TouchAction

from selenium.webdriver.common.by import By

from selenium.webdriver.support import expected_conditions as EC

desired_capabilities = {

"platformName": "ios",

"appium:deviceName": "iPhone Jeff",

"appium:platformVersion": "16.5.1",

"appium:bundleId": "welab.bank.mobile.stage",

"appium:udid": "00008030-000A09C81A43802E"

}

desired_capabilities1 = {

"platformName": "ios",

"appium:deviceName": "iPhone 13",

"appium:platformVersion": "16.6",

"appium:bundleId": "welab.bank.mobile.stage",

"appium:udid": "00008110-000235E022EA201E"

}

driver = webdriver.Remote(command_executor='http://127.0.0.1:4723/wd/hub',

desired_capabilities=desired_capabilities1)

sleep(10)

ele = driver.find_element(AppiumBy.IOS_PREDICATE, "name == '用戶名稱'")

label == "用戶名稱" AND name == "用戶名稱" AND value == "用戶名稱"

//XCUIElementTypeStaticText[@name="用戶名稱"]

ele.send_keys("qatest101")

print(ele.location)

driver.find_element(By.ID, "")

# iOS自动化测试元素定位的accessibility_id主要使用元素的label或name(两个属性的值都一样)属性进行定位。

driver.find_element(AppiumBy.ACCESSIBILITY_ID, "密碼").send_keys("Aa123456")

sleep(2)

driver.hide_keyboard()

sleep(1)

driver.find_element(AppiumBy.ACCESSIBILITY_ID, "登入").click()

sleep(10)

driver.lock()

sleep(2)

try:
driver.unlock() # 如果有密码,这句会fail,但是会点亮屏幕,并且展示密码输入的页面

except:

pass

sleep(5)

driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="2"]').click()

driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="3"]').click()

driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="6"]').click()

driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="5"]').click()

driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="8"]').click()

driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="9"]').click()

ele_2 = driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="2"]')

ele_3 = driver.find_element(AppiumBy.XPATH, '//XCUIElementTypeKey[@name="3"]')

TouchAction(driver).press(ele_2,ele_2.location.get("x"),ele_2.location.get("x")).wait(190).\

move_to(ele_2, ele_3.location.get("x"), ele_3.location.get("y")).perform().release()

sleep(5)

https://www.kancloud.cn/testerhome/appium_docs_cn/2001743

参考 External Libraries.site-packages.appium.webdriver.common.appiumby

class AppiumBy(By):

IOS_PREDICATE = '-ios predicate string'

IOS_UIAUTOMATION = '-ios uiautomation'

IOS_CLASS_CHAIN = '-ios class chain'

ANDROID_UIAUTOMATOR = '-android uiautomator'

ANDROID_VIEWTAG = '-android viewtag'

ANDROID_DATA_MATCHER = '-android datamatcher'

ANDROID_VIEW_MATCHER = '-android viewmatcher'

Deprecated

WINDOWS_UI_AUTOMATION = '-windows uiautomation'

ACCESSIBILITY_ID = 'accessibility id'

IMAGE = '-image'

CUSTOM = '-custom'

参考selenium

class By:

"""Set of supported locator strategies."""

ID = "id"

XPATH = "xpath"

LINK_TEXT = "link text"

PARTIAL_LINK_TEXT = "partial link text"

NAME = "name"

TAG_NAME = "tag name"

CLASS_NAME = "class name"

CSS_SELECTOR = "css selector"

相关推荐
BBNbQKHXygfU20 小时前
课程管理平台 SSM 技术栈:Java EE、Mysql-5.6、Spring、SpringM...
iphone
游戏开发爱好者821 小时前
日常开发与测试的 App 测试方法、查看设备状态、实时日志、应用数据
android·ios·小程序·https·uni-app·iphone·webview
黑码哥1 天前
ViewHolder设计模式深度剖析:iOS开发者掌握Android列表性能优化的实战指南
android·ios·性能优化·跨平台开发·viewholder
2501_915106321 天前
app 上架过程,安装包准备、证书与描述文件管理、安装测试、上传
android·ios·小程序·https·uni-app·iphone·webview
2501_915106321 天前
使用 Sniffmaster TCP 抓包和 Wireshark 网络分析
网络协议·tcp/ip·ios·小程序·uni-app·wireshark·iphone
熊猫钓鱼>_>1 天前
移动端开发技术选型报告:三足鼎立时代的开发者指南(2026年2月)
android·人工智能·ios·app·鸿蒙·cpu·移动端
徐同保2 天前
通过ip访问nginx的服务时,被第一个server重定向了,通过设置default_server解决这个问题
ios·iphone
2501_915918412 天前
在 iOS 环境下查看 App 详细信息与文件目录
android·ios·小程序·https·uni-app·iphone·webview
2501_916007472 天前
没有 Mac 用户如何上架 App Store,IPA生成、证书与描述文件管理、跨平台上传
android·macos·ios·小程序·uni-app·iphone·webview
夏幻灵3 天前
HTTPS全面解析:原理、加密机制与证书体
ios·iphone