简体   繁体   中英

Programmatically turn on/off wifi on real iOS device with UI Automation

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,

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}});

要做到这一点,就像@Larme所说,由于iOS的锁定性质,用户的iOS设备必须越狱。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM