简单记录下appium的使用方法
==================================================================================================
搜索输入中英文
搜索框输入英文字符或阿拉伯直接调用
.send_keys(u"hello")
搜索框输入中文字符:
desired_caps 只需在下面增加两行即可输入
self.desired_caps = {
'platformName': PLATFORM,
'deviceName': DEVICE_NAME,
'appPackage': APP_PACKAGE,
'appActivity': APP_ACTIVITY,
'noReset': True,
'unicodeKeyboard': True, #使用unicode编码方式发送字符串
'resetKeyboard': True # 将键盘隐藏起来
}
也可以
driver.activate_ime_engine('io.appium.android.ime/.UnicodeIME') #切换到appium输入法,此时可以键入中文
appium控制安卓按键 参考链接
https://www.cnblogs.com/harry-xiaojun/p/6900259.html
https://testerhome.com/topics/799
获取android 粘贴板上的内容
# texts = 'hello'
# text = texts.encode()
# self.driver.set_clipboard(text) #设置系统粘贴板内容
print('复制完毕')
# ss = self.driver.get_clipboard() #获取粘贴板内容
# search_.send_keys(ss)
模仿真机长按出现复制粘贴内容
TouchAction 控件 参考文章
https://blog.csdn.net/weixin_40180628/article/details/79170053
================================================================================================
获取 各个属性参考链接
通过 get_attribute(“属性名称”) 来获取
https://yq.aliyun.com/articles/317320
================================================================================================
后续待添加