python-appnium

# coding:utf-8
from appium import webdriver
import time
from selenium.webdriver.common.keys import Keys

desired_caps = {'platformName': 'Android',
'deviceName': '30d4e606',
'platformVersion': '6.0',
'appPackage': 'org.zywx.wbpalmstar.widgetone.Mobile.EBS.UAT',
'appActivity': 'org.zywx.wbpalmstar.engine.LoadingActivity'}
driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)
time.sleep(10)

contexts = driver.contexts
print contexts
driver.switch_to.context(contexts[1])
time.sleep(5)
driver.find_element_by_id('userCode').clear()
driver.find_element_by_id('userCode').send_keys('shenweihuang')
time.sleep(1)
driver.find_element_by_id('passWord').clear()
driver.find_element_by_id('passWord').send_keys('888888a')
time.sleep(1)
driver.find_element_by_xpath(".//*[@id='page_0']/div[2]/div[3]/div").click()
time.sleep(10)
b = driver.current_window_handle
time.sleep(1)
driver.switch_to.window(b)
time.sleep(3)
driver.find_element_by_xpath(".//*[@id='MenuAll']").click()

if __name__ == '__main__':
pass
posted @   忧伤恋上了快乐  阅读(197)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
阅读排行:
· 【译】我们最喜欢的2024年的 Visual Studio 新功能
· 个人数据保全计划:从印象笔记迁移到joplin
· Vue3.5常用特性整理
· 重拾 SSH:从基础到安全加固
· 并发编程 - 线程同步(一)
点击右上角即可分享
微信分享提示