TA的每日心情 | 无聊 7 小时前 |
---|
签到天数: 528 天 连续签到: 1 天 [LV.9]测试副司令
|
登录- #启动程序
- def startcare():
- doubleClick("CareStart.png")
- #关闭程序
- def closecare():
- while not exists("close.png"):
- wait(1)
- click(Pattern("close.png").targetOffset(0,1))
- #程序退出
- def quitcare():
- click("menu.png")
- while not exists("LogOut.png"):
- click("menu.png")
- click("LogOut.png")
- while not exists("confirmquit.png"):
- wait(1)
- click(Pattern("confirmquit.png").targetOffset(142,32))
- #账号登录
- def login():
- while not exists("AccountLogin.png"):
- wait(1)
- click(Pattern("AccountLogin.png").targetOffset(-4,0))
- type("IphoneNumber.png", "账号")
- type("Password.png", "密码")
- click("LoginBtn.png")
- while not exists("menu.png"):
- if exists("LoginTimeout.png"):#若登录超时,关闭重新登录,保证登录是成功的
- closecare()
- startcare()
- login()
- print "登录账号"
- startcare()
- for x in range(2):
- login()
- x = x + 1
- print x
- quitcare()
- closecare()
复制代码强制结束的快捷键:Shift+Alt+C
|
|