Programmatically turn on/off wifi on real iOS devi

2019-02-10 04:40发布

I have already read once or twice that turn on/off wifi on a real iOS device (iPad in my case) with a UI Automation script seems not possible.

I've also read that you can create a script with the target "Settings" but it seems that it's only for simulators, am I right ?

Do you have any ideas or solutions for me ?

Regards,

2条回答
戒情不戒烟
2楼-- · 2019-02-10 05:26

i was able to do so (just make sure you target application is on foremost state when doing so):

var target = UIATarget.localTarget();

target.dragFromToForDuration({x:0.1, y:557.00}, {x:211.00, y:206.00},
0.5); //to expose the actions panel on iOS

target.frontMostApp().mainWindow().elements()["Wifi"].tapWithOptions({tapOffset:{x:0.44, y:0.47}});
查看更多
ら.Afraid
3楼-- · 2019-02-10 05:28

To do this, like @Larme states, the user's iOS device must be jailbroken due to the locked-down nature of iOS.

查看更多
登录 后发表回答