level 1
function password_input()
{
var password = "111111"
for(var i = 0; i < password.length; i++)
{
var p = text(password[i].toString()).findOne().bounds();
click(p.centerX(), p.centerY());
sleep(100);
}
}
function unlock()
{
if(!device.isScreenOn())
{
console.log("1")
device.wakeUp();
sleep(1000);
swipe(500,2000,500,1000,210);
password_input();
}
else{
console.log("2")
}
}
unlock();
屏幕关闭时,运行日志输出2
2025年07月28日 05点07分