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

Author: Shah Nawaz

Device Logs and Page source

How to get page source/App hirarachy in Appium?

String pSource = driver.getPageSource();

Appium Basic Capability

How to get the session capabilities in Appium?

Map caps = driver.getSessionDetails();

Some of the Advanced Tips of appium

How to end the session in Appium?

driver.quit();

Different type of Gesture using appium

How to move touch on a specific location using Appium?

TouchActions pCloudyAct = new TouchActions(driver); pCloudyAct.down(24, 64); pCloudyAct.moveTo(35, 25); pCloudyAct.perform();

cookie

How to delete all the cookies using appium?

driver.manage().deleteAllCookies();

cookie

How to remove cookie by name in Appium?

driver.manage().deleteCookieNamed(“cookie_name”);

Uncategorized

How to get the url of current page in Appium?

String pCloudyURL = driver.getCurrentUrl();

Lock and Unlock Functionality Using Appium

How to lock any device using appium?

driver.lockDevice();

Browser Automation Using Appium

How to get the webpage title using appium?

//Saving in a string pagetitle. String pagetitle = driver.getTitle();

Lock and Unlock Functionality Using Appium

How to unlock any device using appium?

driver.unlockDevice();

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 many devices can I connect in each plan?
  • How we can do interrupt testing?
  • Is it possible to run Automation on Android and iOS devices at the same time?
Copyright © 2025 pCloudy - Question and Answers – All Rights Reserved