Aditional Functionality By pCloudy Appium How to disable wifi in local Android device using appium in Pcloudy? driver.executeScript(“pCloudy_executeAdbCommand”, “adb shell am startservice –user 0 -n com.pcloudy.services/.wifiservice –ei \”op\” 1″);
Aditional Functionality By pCloudy Appium How to enable wifi in local Android device using appium in pcloudy? String cmd1=”adb shell am startservice –user 0 -n com.pcloudy.services/.wifiservice –ei \”op\” 0″; driver.executeScript(“pCloudy_executeAdbCommand”, cmd1);
Aditional Functionality By pCloudy Appium How to Execute ADB command in pcloudy android devices? Code Snippet: Object obj = driver.executeScript(“pCloudy_executeAdbCommand”, “adb devices”); System.out.println(“@Output: ” + obj);
Aditional Functionality By pCloudy Appium How to set location at the run-time(While executing Appium Script in pcloudy devices)? Code Snippet Object deviceId = driver.executeScript(“pCloudy_executeAdbCommand”, “adb devices”); Object mockLocation = driver.executeScript(“pCloudy_executeAdbCommand”, “adb -s “+deviceId+” shell appops set com.pcloudy.services android:mock_location allow”); double latitude = 28.585895; double longitude = 77.313255; Object …
Aditional Functionality By pCloudy Appium How to launch application and run script if the user is not able to launch entrprise app (.ipa) on any device on pCloudy platform? For that, they need to trust the app before running their script and they need to resign (pCloudy Feature) their application and try to use resigned application with proper bundleId.
Aditional Functionality By pCloudy Appium How to inspect element on pCloudy devices(both iOS and Android) ? 24.9 Appium Importer