Show IOS Log

If you want to go deeper to crack something you can use this capability. It will provide you with any logs captured from a device in the appium logs. Default …

How to get specific cookie information

Cookie cookie = driver.manage().getCookieNamed(“1P_JAR”); System.out.println(“Name : ” + cookie.getName()); System.out.println(“Value : ” + cookie.getValue()); System.out.println(“Domain : ” + cookie.getDomain()); System.out.println(“Path : ” + cookie.getPath()); System.out.println(“Expiry : ” + cookie.getExpiry()); System.out.println(“Secure …

How to get all cookies information in Appium

Set cookies = driver.manage().getCookies(); for(Cookie cookie: cookies) { System.out.println(“Name : ” + cookie.getName()); System.out.println(“Value : ” + cookie.getValue()); System.out.println(“Domain : ” + cookie.getDomain()); System.out.println(“Path : ” + cookie.getPath()); System.out.println(“Expiry : …