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

Side by Side Diff: tools/testing/webdriver_test_setup.py

Issue 9581025: Webdriver install script, take 2. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 months 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 | « tools/testing/perf_testing/perf_README.txt ('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
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 3 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 # for details. All rights reserved. Use of this source code is governed by a 4 # for details. All rights reserved. Use of this source code is governed by a
5 # BSD-style license that can be found in the LICENSE file. 5 # BSD-style license that can be found in the LICENSE file.
6 6
7 # Run to install the necessary components to run webdriver on the buildbots or 7 # Run to install the necessary components to run webdriver on the buildbots or
8 # on your local machine. 8 # on your local machine.
9 # Note: The setup steps can be done fairly easily by hand. This script is 9 # Note: The setup steps can be done fairly easily by hand. This script is
10 # intended to simply and reduce the time for setup since there are a fair number 10 # intended to simply and reduce the time for setup since there are a fair number
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 lambda x: 'chromedriver_%(os)s_%(version)s.zip' % x).run() 231 lambda x: 'chromedriver_%(os)s_%(version)s.zip' % x).run()
232 if 'darwin' in sys.platform: 232 if 'darwin' in sys.platform:
233 GoogleCodeInstaller('selenium', os.path.dirname(os.path.abspath(__file__)), 233 GoogleCodeInstaller('selenium', os.path.dirname(os.path.abspath(__file__)),
234 lambda x: 'selenium-server-standalone-%(version)s.jar' % x).run() 234 lambda x: 'selenium-server-standalone-%(version)s.jar' % x).run()
235 235
236 if args.firefox: 236 if args.firefox:
237 FirefoxInstaller().run() 237 FirefoxInstaller().run()
238 238
239 if __name__ == '__main__': 239 if __name__ == '__main__':
240 main() 240 main()
OLDNEW
« no previous file with comments | « tools/testing/perf_testing/perf_README.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698