How to disable wifi in local Android device using appium?
String adbCommand = “adb shell am broadcast -a io.appium.settings.wifi –es setstatus disable”; runCommand(adbCommand); public String runCommand(String command) throws InterruptedException, IOException { p = Runtime.getRuntime().exec(command); // get std output BufferedReader r …