Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: build/android/screenshot.py

Issue 11470004: [Android] Add screenshot command line tool. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: show helpful error message on multiple device failure Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/android/monkeyrunner_screenshot.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 """Takes and saves a screenshot from an Android device.
8
9 Usage: screenshot.py [-s SERIAL] [-f FILE]
10
11 Options:
12 -s SERIAL connect to device with specified SERIAL
13 -f FILE write screenshot to FILE (default: Screenshot.png)
14 """
15
16 from optparse import OptionParser
17 import os
18 import sys
19
20 from pylib import android_commands
21
22
23 def main(argv):
24 # Parse options.
25 parser = OptionParser()
26 parser.add_option('-s', '--serial', dest='serial',
27 help='connect to device with specified SERIAL',
28 metavar='SERIAL', default=None)
29 parser.add_option('-f', '--file', dest='filename',
30 help='write screenshot to FILE (default: %default)',
31 metavar='FILE', default='Screenshot.png')
32 (options, args) = parser.parse_args(argv)
33
34 # Grab screenshot and write to disk.
35 filename = os.path.abspath(options.filename)
36 ac = android_commands.AndroidCommands(options.serial)
37 try:
38 ac.TakeScreenshot(filename)
39 except:
40 print ('Screenshot failed. If multiple devices are attached, be sure to '
frankf 2012/12/06 22:27:09 Actually, it'd be cleaner do explicitly check usin
newt (away) 2012/12/06 22:32:30 Exactly. Tommy had the same idea. Done.
41 'specify SERIAL with -s.')
42 raise
43 return 0
44
45
46 if __name__ == '__main__':
47 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « build/android/monkeyrunner_screenshot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698