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

Unified Diff: tools/testing/webdriver_test_setup.py

Issue 9748022: Fix webdriver setup. (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 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 5670)
+++ tools/testing/webdriver_test_setup.py (working copy)
@@ -73,7 +73,8 @@
def __init__(self, project_name, download_location, download_name_func):
""" Create a object that will install code from a Google Code site.
Arguments:
- project_name - The GoogleCode project name such as "selenium" or "chromium."
+ project_name - The GoogleCode project name such as "selenium" or
+ "chromedriver."
download_location - Where to download the desired file on our filesystem.
download_name_func - A function that takes a dictionary (currently with keys
"os" and "version", but more can be added) that calculates the string
@@ -227,7 +228,7 @@
chromedriver_loc = find_depot_tools_location(args.buildbot)
if args.path:
chromedriver_loc = args.path
- GoogleCodeInstaller('chromium', chromedriver_loc,
+ GoogleCodeInstaller('chromedriver', chromedriver_loc,
lambda x: 'chromedriver_%(os)s_%(version)s.zip' % x).run()
if 'darwin' in sys.platform:
GoogleCodeInstaller('selenium', os.path.dirname(os.path.abspath(__file__)),
« 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