• appium_python 实现手势密码


    直接上代码吧:

    from appium.webdriver.common.touch_action import TouchAction
    from driver import AppiumTest
    #手势密码 封装: 九宫格(012;345;678)手势为:1478
        def gesturepassword(self):
            list_pwd = self.driver.find_elements_by_class_name("android.widget.ImageView")
            TouchAction(self.driver).press(list_pwd[1]).move_to(list_pwd[1]).move_to(list_pwd[4]).wait(100).move_to(list_pwd[7]).wait(100).move_to(list_pwd[8]).release().perform()
            time.sleep(1)
            print("输入手势密码")
            """如果为新注册,或者修改手势密码的时候,需要输入两次手势密码,如果只是登录的话就是一次"""
            try:
                ee=self.driver.find_element_by_name("请再绘制手势密码")
                list_pwd = self.driver.find_elements_by_class_name("android.widget.ImageView")
                TouchAction(self.driver).press(list_pwd[1]).move_to(list_pwd[1]).move_to(list_pwd[4]).wait(100).move_to(list_pwd[7]).wait(100).move_to(list_pwd[8]).release().perform()
            except Exception:
                pass
    

     解释:

    因为 九宫格 所有的店 都是一个 ImageView 而且 同属于android.widget.ImageView 这个 class ,所以 直接用self.driver.find_elements_by_class_name 这个方法 把 所有点都抓出来,存入list,这样

    手机的 九个点 就可以 理解为 0 1 2  (list【】)

                                          3 4 5

                                          6 7 8

    这种形式,然后调用TouchAction(self.driver).press.......这个方法 ,按照你想设定的轨迹走就可以了

  • 相关阅读:
    1分钟去除word文档编辑限制密码
    建行信用卡微信查询
    明目地黄丸
    发动机启停技术
    ORA-12170: TNS: 连接超时
    螃蟹放进冰箱冷冻保存前,要注意什么呢?
    螃 蟹要蒸多久
    总胆固醇偏高的注意措施及治疗方法
    codeforces 375D . Tree and Queries 启发式合并 || dfs序+莫队
    codeforces 374D. Inna and Sequence 线段树
  • 原文地址:https://www.cnblogs.com/hanzhao1987/p/6026960.html
Copyright © 2020-2023  润新知