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

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

Issue 2743013002: Add webdriver endpoint to send custom debugger commands (Closed)
Patch Set: Adding e2e test Created 3 years, 8 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 2b9fa6b9ec33e0dfac02118f2a567b632d66005c..c926fcee245078d80ebb2cd9b6f3a11ccd36e22b 100644
--- a/chrome/test/chromedriver/client/command_executor.py
+++ b/chrome/test/chromedriver/client/command_executor.py
@@ -152,6 +152,10 @@ class Command(object):
STATUS = (_Method.GET, '/status')
SET_NETWORK_CONNECTION = (
_Method.POST, '/session/:sessionId/network_connection')
+ SEND_COMMAND = (
+ _Method.POST, '/session/:sessionId/chromium/sendcommand')
+ SEND_COMMAND_AND_GET_RESULT = (
+ _Method.POST, '/session/:sessionId/chromium/sendcommandandgetresult')
# Custom Chrome commands.
IS_LOADING = (_Method.GET, '/session/:sessionId/is_loading')

Powered by Google App Engine
This is Rietveld 408576698