Skip to content
pCloudy – Question and Answers
Menu
    • Appium Tips and Tricks
    • Ask Question
    • Questions

Author: Sridatta Pani

Wifi and netwok Functionallity Using appium

How to turn on Wifi in ios devices using appium?

driver.toggleWifi();

Opearation on Elements using Appium

How to send Emoji to a text box in android device using appium?

For this we have to add two capabilities : capabilities.setCapability(“unicodeKeyboard”, true); capabilities.setCapability(“resetKeybord”, true); /***code for sending emoji***/ String ballEmoji = “\u26BD”; driver.findElement(By.xpath(“//android.widget.EditText[@resource-id=’com.pcloudy.pcloudykeystroke:id/txtrat’]”)).sendKeys(ballEmoji);

Wifi and netwok Functionallity Using appium

How to turn on aeroplane mode in ios device using appium?

driver.toggleAirplaneMode();

Lock and Unlock Functionality Using Appium

How to know that Ios device is locked or not using appium?

boolean isLocked = driver.isDeviceLocked();

Opearation on Elements using Appium

How to click an element in a text view?

List list = driver.findElements(By.id(“com.sample:id/list”)); list.get(0).click();

Install and Uninstall and reset of Application and Filehandeling using Appium

How to reset apk in android using appium?

driver.resetApp();

Uncategorized

How to find pageSource of a page in android devices?

String pageSource = driver.getPageSource();

Conetext Switching and Screenshot Functionallity Using appium

How to record a screen using appium in android?

((CanRecordScreen) driver).startRecordingScreen(); Thread.sleep(10000); ((CanRecordScreen) driver).stopRecordingScreen();

Install and Uninstall and reset of Application and Filehandeling using Appium

How to Place a file onto the device in a particular place?

driver.pushFile(“/path/to/device/filename”, new File(“/Users/johndoe/files/filename”));

Install and Uninstall and reset of Application and Filehandeling using Appium

How to retrieve a file from the device’s file system?

byte[] fileBase64 = driver.pullFile(“/path/to/device/fileName”);

Posts navigation

Older posts
Newer posts

pCloudy PORTAL

  • Appium Tips and Tricks
  • Ask Question
  • Sample Code
  • Documentation
  • Videos
  • Blog
  • Training

POPULAR QUESTIONS

  • How to automate pull down refresh functionality ?
  • Can I use pCloudy to test web application on iOS device through automation?
  • How we can do interrupt testing?
  • How many devices can I connect in each plan?
  • Is it possible to run Automation on Android and iOS devices at the same time?
Copyright © 2025 pCloudy - Question and Answers – All Rights Reserved