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

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

Issue 114403005: Adding a LaunchApp command to Chromedriver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing to latest code Created 6 years, 11 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
Index: chrome/test/chromedriver/client/command_executor.py
diff --git a/chrome/test/chromedriver/client/command_executor.py b/chrome/test/chromedriver/client/command_executor.py
index 3ce9ef9ff1eb1be844d144699dc98f448fe22cf8..17af2f3a05612772d0e3204500af9c43c235246b 100644
--- a/chrome/test/chromedriver/client/command_executor.py
+++ b/chrome/test/chromedriver/client/command_executor.py
@@ -19,6 +19,7 @@ class Command(object):
GET_CURRENT_WINDOW_HANDLE = (_Method.GET, '/session/:sessionId/window_handle')
GET_WINDOW_HANDLES = (_Method.GET, '/session/:sessionId/window_handles')
GET = (_Method.POST, '/session/:sessionId/url')
+ LAUNCH_APP = (_Method.POST, '/session/:sessionId/launch')
GET_ALERT = (_Method.GET, '/session/:sessionId/alert')
DISMISS_ALERT = (_Method.POST, '/session/:sessionId/dismiss_alert')
ACCEPT_ALERT = (_Method.POST, '/session/:sessionId/accept_alert')

Powered by Google App Engine
This is Rietveld 408576698