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

Unified Diff: chrome/test/chromedriver/client/chromedriver.py

Issue 63373003: [chromedriver] Add a WebView shell app for testing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't run the test just yet Created 7 years, 1 month 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 | « chrome/test/chromedriver/chrome/device_manager.cc ('k') | chrome/test/chromedriver/test/run_java_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/client/chromedriver.py
diff --git a/chrome/test/chromedriver/client/chromedriver.py b/chrome/test/chromedriver/client/chromedriver.py
index 0d7ad5027c73226260b28bb812f5207999289b74..9ccbe1547b70ac7ac7dd9b0a342626ed9789ab9f 100644
--- a/chrome/test/chromedriver/client/chromedriver.py
+++ b/chrome/test/chromedriver/client/chromedriver.py
@@ -61,6 +61,7 @@ class ChromeDriver(object):
"""Starts and controls a single Chrome instance on this machine."""
def __init__(self, server_url, chrome_binary=None, android_package=None,
+ android_activity=None, android_process=None,
chrome_switches=None, chrome_extensions=None,
chrome_log_path=None, debugger_address=None,
browser_log_level=None):
@@ -69,6 +70,10 @@ class ChromeDriver(object):
options = {}
if android_package:
options['androidPackage'] = android_package
+ if android_activity:
+ options['androidActivity'] = android_activity
+ if android_process:
+ options['androidProcess'] = android_process
elif chrome_binary:
options['binary'] = chrome_binary
« no previous file with comments | « chrome/test/chromedriver/chrome/device_manager.cc ('k') | chrome/test/chromedriver/test/run_java_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698