Appium-實現手勢密碼登錄

前言:

前幾天有人問我,手勢登錄如何作?因而我找了一個APP試了試,因此本文來總結使用Python+Appium來實現手勢密碼登錄APP。ios


環境:

MacOS:10.13.4
Appium-desktop:1.6.1
Xcode:9.3.1
APP:衆安保險-iOS版
----web

1、Appium API -- TouchAction

Appium的輔助類,主要針對手勢操做,好比滑動、長按、拖動等。api

一、按壓控件
方法:press()
開始按壓一個元素或座標點(x,y)。經過手指按壓手機屏幕的某個位置。
舉例:服務器

TouchAction(driver).press(x=0,y=308).release().perform()

release() 結束的行動取消屏幕上的指針。
Perform() 執行的操做發送到服務器的命令操做。

二、長按控件
方法:longPress()
開始按壓一個元素或座標點(x,y)。 相比press()方法,longPress()多了一個入參,既然長按,得有按的時間吧。duration以毫秒爲單位。1000表示按一秒鐘。其用法與press()方法相同。
舉例:app

TouchAction(driver).longPress(x=1 ,y=302,duration=1000).perform().release();

三、移動
方法:moveTo()
將指針(光標)從過去指向指定的元素或點。
舉例:指針

TouchAction(driver).moveTo(x=0,y=308).perform().release();

四、暫停
方法:wait()
暫停腳本的執行,單位爲毫秒。
舉例:code

TouchAction(driver).wait(1000);

2、經過觸摸多點座標進行解鎖

根據上面API解釋,咱們能夠得出按壓和移動來實現手勢解釋,大概思路以下:orm

TouchAction.press(beginX,beginY).moveTo(xStep,yStep).moveTo(xStep,yStep).release().perform();

打開Appium-Inspector來查看手勢對應的各個點的座標。
選擇[Swipe By Coordinates],可查看任意點的座標。可選擇手勢觸摸點的中心位置。以下圖所示:做者分別選擇左上角的4個點,便可模擬手勢來執行登錄操做。Appium-Inspector.png
代碼以下:blog

# -*- coding: utf-8 -*-
# @Time    : 2018/5/22 下午10:33
# @Author  : WangJuan
# @File    : appium-ios.py
from time import sleep

from appium import webdriver
from appium.webdriver.common.touch_action import TouchAction

cap = {
  "platformName": "iOS",
  "platformVersion": "11.4",
  "bundleId": "com.zhongan.insurance",
  "automationName": "XCUITest",
  "udid": "3e8325a7c0d*******************a7e",
  "deviceName": "****Iphone"
}

host = "http://0.0.0.0:4728/wd/hub"
driver = webdriver.Remote(host, cap)
sleep(3)
action = TouchAction(driver)
action.press(x=98, y=321).wait(100).move_to(x=208, y=321).wait(100).move_to(x=206, y=432).wait(100).move_to(x=98, y=432).perform().release()

3、兼容不一樣分辨率

直接用座標點找會有一些問題,好比手機屏幕大小不一樣,找點的位置可能會有誤差,如何解決呢?
由下圖可見,先獲取第一個觸摸點的座標location及size。分別定義爲start_height、start_width、start_x、start_y(其中start_x、start_y爲觸摸點左上角的座標);
便可計算出第一個觸摸點的中心點座標分別爲:
start_x + start_width/2, start_y + start_height/2
而後在計算出第二個觸摸點的中心點大體座標爲:
start_x+start_width*2, y=start_y+start_height*2 Appium-Inspector-2.png
其餘座標都可按照此計算方式,詳情見具體例子。ip

# -*- coding: utf-8 -*-
# @Time    : 2018/5/22 下午10:33
# @Author  : WangJuan
# @File    : appium-ios.py
from time import sleep

from appium import webdriver
from appium.webdriver.common.touch_action import TouchAction

cap = {
  "platformName": "iOS",
  "platformVersion": "11.4",
  "bundleId": "com.zhongan.insurance",
  "automationName": "XCUITest",
  "udid": "3e8325a7c0***************62bd4a7e",
  "deviceName": "My@Iphone"
}

host = "http://0.0.0.0:4728/wd/hub"
driver = webdriver.Remote(host, cap)
sleep(3)
action = TouchAction(driver)
# action.press(x=98, y=321).wait(100).move_to(x=208, y=321).wait(100).move_to(x=206, y=432).wait(100).move_to(x=98, y=432).perform().release()
start = driver.find_element_by_xpath('//XCUIElementTypeApplication[@name="衆安保險"]/XCUIElementTypeWindow[1]/XCUIElementTypeOther\
                    /XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther[1]')
start_height = start.size['height']
start_width = start.size['width']
start_x = start.location['x']
start_y = start.location['y']
begin_x = start_x + start_width/2
begin_y = start_y + start_height/2

action.press(x=start_x, y=start_y).wait(100).move_to(x=start_x+start_width*2, y=begin_y).wait(100).move_to\
                  (x=start_x+start_width*2, y=start_y+start_height*2).wait(100).move_to(x=begin_x,y=start_y+start_height*2).perform().release()

以上,對你有幫助的話,請點贊吧❤️~~

相關文章
相關標籤/搜索