Appium连接android真机
程序员文章站
2022-03-31 08:01:47
from appium import webdriverfrom appium.webdriver.extensions.android.nativekey import AndroidKeyimport timefrom selenium.webdriver.common.by import Bydesired_caps = { 'platformName': 'Android', # 被测手机是安卓 'platformVersion': '10', # 手机安卓版本 ....
from appium import webdriver
from appium.webdriver.extensions.android.nativekey import AndroidKey
import time
from selenium.webdriver.common.by import By
desired_caps = {
'platformName': 'Android', # 被测手机是安卓
'platformVersion': '10', # 手机安卓版本
'deviceName': 'xxx', # 设备名,安卓手机可以随意填写
'appPackage': 'chuxin.shimo.shimowendang', # 启动APP Package名称
'appActivity': '.WelcomeActivity', # 启动Activity名称
'unicodeKeyboard': True, # 使用自带输入法,输入中文时填True
'resetKeyboard': True, # 执行完程序恢复原来输入法
'noReset': True, # 不要重置App,如果没有的话,每次执行自动化前会重置APP的数据,像刚刚安装的状态一样
'newCommandTimeout': 6000, # 连接超时时间
'automationName': 'UiAutomator2' # appium的自动化版本
# 'app': r'd:\apk\bili.apk',
}
# 连接Appium Server,初始化自动化环境
driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
# 设置缺省等待时间
driver.implicitly_wait(5)
# 跟进text定位账号登录按钮,点击
try:
login = driver.find_element_by_android_uiautomator('new UiSelector().text("帐号登录")')
print(login.text)
login.click()
except Exception as e:
print(e)
# 根据accessibility_id定位账号输入置框,点击
driver.find_element_by_accessibility_id('login_account_account_input').clear().send_keys('1650878903@qq.com')
# 根据accessibility_id定位密码输入置框,点击
driver.find_element_by_accessibility_id('login_account_password_input').clear().send_keys('123456')
# 点击登录
driver.find_element_by_android_uiautomator('new UiSelector().text("登录")').click()
#创建文件
driver.find_element_by_accessibility_id('tab_create').click()
#新建文档
driver.find_element_by_accessibility_id('create_doc').click()
time.sleep(2)
#填写标题
#driver.find_element_by_id('client-title-input').click()
#driver.find_element_by_id('client-title-input').send_keys('公务员考试')
driver.find_element_by_android_uiautomator('new UiSelector().text("无标题")').clear().send_keys('123')
#send = driver.find_element(By.XPATH, "//android.view.View[@resource-id='ql-avatar-50781847']")
#driver.find_element_by_android_uiautomator('new UiSelector().resourceId("ql-avatar-50781847")')
driver.find_element_by_android_uiautomator('new UiSelector().resourceId("document-editor-container")').click()
time.sleep(3)
print(driver.contexts)
input('**** Press to quit..')
driver.quit()
本文地址:https://blog.csdn.net/weixin_42550871/article/details/110197056
推荐阅读
-
android真机调试时无法显示logcat信息的解决方法介绍
-
谷歌Pixel 4a全新真机照曝光:5.7寸挖孔屏 Android版iPhone SE2
-
解决Android studio用真机调试时logcat一直输出日志问题
-
android真机调试时无法显示logcat信息的解决方法介绍
-
android studio怎么在真机中调试程序?
-
Android Studio 使用真机调试——打开手机开发者模式
-
python+appium:最新整理appium的搭建与启动,连接真机,py代码启动appium服务
-
appium爬取微信朋友圈信息 真机测试
-
关于Appium手机自动化真机输入中文的问题
-
appium+adb命令Android连接夜神模拟器