android 解锁九宫格,只需要输入九宫格起点坐标和数字路径解锁九宫格方法,支持 ANDROID,IOS (9.1)...

/**

* 输入格式 {(300,500,100,200)/(1,3,5,7,9)}

* 300,500 :第一个点的x,y坐标,100,200 是横竖点坐标相对间隔

* 1,3,5,7,9是Z子解锁路径

* 起点坐标和横竖点坐标,均可通过webdriver webelement API webElement.getLocation()计算出。

* @param inputData

*/

public void drawScreenLockPassWd(String inputData,WebDriver driver){

try {

if (!inputData.contains("/")){

log.error("格式不正确");

}else {

log.info("开始解锁");

String[] strArray=inputData.split("/")[0].replace("{","").replace("(","").replace(")","").split(",");

int x=Integer.parseInt(strArray[0]);

int y=Integer.parseInt(strArray[1]);

int spaceX=Integer.parseInt(strArray[2]);

int spaceY=Integer.parseInt(strArray[3]);

String[] strArray2=inputData.split("/")[1].replace("}","").replace("(","").replace(")","").split(",");

int[] dot=new int[strArray2.length];

for (int i=0;i

dot[i]=Integer.parseInt(strArray2[i]);

}

drawScreenLockPassWd(x,y,spaceX,spaceY,dot,driver);

}

}catch (Exception e){

log.error("解锁失败");

throw e;

}

}

/**

*

* @param x

* @param y

* @param spaceX

* @param spaceY

* @param dotPos 点位置列表

*/

private void drawScreenLockPassWd(int x, int y, int spaceX,int spaceY,int[] dotPos,WebDriver driver){

try {

List positionList=new ArrayList<>();

for (int i=0;i

Position position=getPositionToLockScreenPassWd(x,y,spaceX,spaceY,dotPos[i]);

positionList.add(position);

}

TouchAction touchAction=null;

if (driver instanceof AndroidDriver){

touchAction=new TouchAction((AndroidDriver)driver);

}else if (driver instanceof IOSDriver){

touchAction=new TouchAction((IOSDriver)driver);

}

TouchAction touchAction1=touchAction.press(positionList.get(0).getX(),positionList.get(0).getY()).waitAction(500);

for (int i=1;i

switch (dotPos[i]-dotPos[i-1]){

case 1://恒向右

x=spaceX;

y=0;

break;

case -1://恒向左

x=-spaceX;

y=0;

break;

case 3://竖向下

x=0;

y=spaceY;

break;

case -3://竖向上

y=-spaceY;

x=0;

break;

case 2://斜对角左向下

x=-spaceX;

y=spaceY;

break;

case 4://斜对角右向下

x=spaceX;

y=spaceY;

break;

case -2://斜对角右向上

x=spaceX;

y=-spaceY;

break;

case -4://斜对角左向上

x=-spaceX;

y=-spaceY;

break;

}

log.info("第"+i+"次按坐标偏移量("+x+","+y+")"+"滑动");

if (driver instanceof IOSDriver){//ios滑动模式

IOSDriver iosDriver=(IOSDriver)driver;

TouchAction touchAction2=null;

String uiautomationName=iosDriver.getAutomationName();

if (uiautomationName!=null){//Xcuitest模式 适用于ios9.3以上手机

touchAction1=touchAction1.moveTo(x,y).waitAction(500);

if (i==positionList.size()-1){

touchAction1.release().perform();

break;

}

}else {

touchAction2=touchAction1.moveTo(x,y).waitAction(500);

if (i==positionList.size()-1){

touchAction2.release().perform();

break;

}

}

}else {

TouchAction touchAction2=touchAction1.moveTo(x,y).waitAction(500);

if (i==positionList.size()-1){

touchAction2.release().perform();

break;

}

}

}

}catch (Exception e){

log.info("没有找到解锁控件");

throw e;

}

}

/**

* 获取锁屏密码坐标

* @param x x轴

* @param y y轴

* @param spaceX 横向间隔

*@param spaceX 纵向间隔

* @param pos 第几个点

* @return

*/

private Position getPositionToLockScreenPassWd(int x, int y, int spaceX, int spaceY, int pos){

Position position=new Position();

switch (pos){

case 1:case 2:case 3://第一行

x=x+(pos-1)*spaceX;

position.setX(x);

position.setY(y);//恒向纵坐标相同

break;

case 4:case 5:case 6://第二行

y=y+spaceY;

x=x+(pos-3-1)*spaceX;

position.setX(x);

position.setY(y);

break;

case 7:case 8:case 9://第三行

y=y+2*spaceY;

x=x+(pos-6-1)*spaceX;

position.setX(x);

position.setY(y);

break;

}

return position;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值