Skip to content

Instantly share code, notes, and snippets.

@JessicaSachs
Last active May 19, 2024 23:56
Show Gist options
  • Save JessicaSachs/7f3ab982eb65900c5159 to your computer and use it in GitHub Desktop.
Save JessicaSachs/7f3ab982eb65900c5159 to your computer and use it in GitHub Desktop.
Taking Screenshots with Appium in Python
'''
Taking Screenshots with Appium
I'll be using Python and a sample iOS application from Apple's Developer Library
This tutorial assumes you understand how to run, launch, and interact with your application.
'''
from appium import webdriver
import os
desired_capabilities = {}
# Build and run the GLPaint app, then specify the absolute path below
# GLPaint can be downloaded from: https://developer.apple.com/library/ios/samplecode/GLPaint/Introduction/Intro.html
desired_capabilities['app'] = '/Users/jessicasachs/projects/demo-automation/demo-apps/compiled/GLPaint.app'
desired_capabilities['deviceName'] = 'iPhone Simulator'
desired_capabilities['platformName'] = 'iOS'
desired_capabilities['platformVersion'] = '7.1'
driver = webdriver.Remote('http://0.0.0.0:4723/wd/hub', desired_capabilities)
directory = '%s/' % os.getcwd()
file_name = 'screenshot.png'
driver.save_screenshot(directory + file_name)
@FrankThonig
Copy link

FrankThonig commented Aug 25, 2017

very good script. precise and to the point. thank you for sharing.

@jamesperes-zz
Copy link

thanks for script!

@sahilongit
Copy link

Where is the screenshot stored?

@akshay772
Copy link

How to save the screenshots in camera roll instead of local system. I am new to appium. Thanks for sharing the script.

@BrendoEnomoto
Copy link

Thank you!!!

@albertlau128
Copy link

How to save the screenshots in camera roll instead of local system. I am new to appium. Thanks for sharing the script.

You will need to save in a local location then push file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment