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

Unified Diff: tools/testing/webdriver_test_setup.py

Issue 11097004: Add IEDriver Server to webdriver setup script. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/webdriver_test_setup.py
===================================================================
--- tools/testing/webdriver_test_setup.py (revision 13446)
+++ tools/testing/webdriver_test_setup.py (working copy)
@@ -1,6 +1,6 @@
#!/usr/bin/python
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
Emily Fortuna 2012/10/09 22:17:16 It's October!! :-P
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
@@ -42,6 +42,9 @@
help="Don't install Firefox", action='store_true', default=False)
parser.add_option('--chromedriver', '-c', dest='chromedriver',
help="Don't install chromedriver.", action='store_true', default=False)
+ parser.add_option('--iedriver', '-i', dest='iedriver',
+ help="Don't install iedriver (only used on Windows).",
+ action='store_true', default=False)
parser.add_option('--seleniumrc', '-s', dest='seleniumrc',
help="Don't install the Selenium RC server (used for Safari and Opera "
"tests).", action='store_true', default=False)
@@ -281,6 +284,9 @@
if not args.seleniumrc:
GoogleCodeInstaller('selenium', os.path.dirname(os.path.abspath(__file__)),
lambda x: 'selenium-server-standalone-%(version)s.jar' % x).run()
+ if not args.iedriver and platform.system() == 'Windows':
+ GoogleCodeInstaller('selenium', find_depot_tools_location(args.buildbot),
+ lambda x: 'IEDriverServer_Win32_%(version)s.zip' % x).run()
if not args.firefox:
FirefoxInstaller().run()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698