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

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

Issue 2743013002: Add webdriver endpoint to send custom debugger commands (Closed)
Patch Set: Adding stub, quick code reorg Created 3 years, 7 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 | « chrome/test/chromedriver/client/chromedriver.py ('k') | chrome/test/chromedriver/devtools_events_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..76fc94b39f71b4f01b9d5dd24243fdaddcf27c52 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/send_command')
+ SEND_COMMAND_AND_GET_RESULT = (
+ _Method.POST, '/session/:sessionId/chromium/send_command_and_get_result')
# Custom Chrome commands.
IS_LOADING = (_Method.GET, '/session/:sessionId/is_loading')
« no previous file with comments | « chrome/test/chromedriver/client/chromedriver.py ('k') | chrome/test/chromedriver/devtools_events_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698