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

Unified Diff: third_party/webdriver/py/selenium/remote/webdriver/remote_connection.py

Issue 3643002: Implemnts the commands in webdriver to preform searching of elements on a page. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix for windows build Created 10 years 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 | « third_party/webdriver/py/selenium/remote/webdriver/command.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/webdriver/py/selenium/remote/webdriver/remote_connection.py
diff --git a/third_party/webdriver/py/selenium/remote/webdriver/remote_connection.py b/third_party/webdriver/py/selenium/remote/webdriver/remote_connection.py
index 6c23684b0bb655ee0854407cb31fdf852b1d1c12..5556fc9db41f6e2147907f6613c456bc167dfd77 100644
--- a/third_party/webdriver/py/selenium/remote/webdriver/remote_connection.py
+++ b/third_party/webdriver/py/selenium/remote/webdriver/remote_connection.py
@@ -128,6 +128,7 @@ class RemoteConnection(object):
Command.GET_CURRENT_URL: ('GET', '/session/$sessionId/url'),
Command.GET_TITLE: ('GET', '/session/$sessionId/title'),
Command.GET_PAGE_SOURCE: ('GET', '/session/$sessionId/source'),
+ Command.IMPLICIT_WAIT: ('POST', '/session/$sessionId/timeouts/implicit_wait'),
Command.SCREENSHOT: ('GET', '/session/$sessionId/screenshot'),
Command.SET_BROWSER_VISIBLE:
('POST', '/session/$sessionId/visible'),
« no previous file with comments | « third_party/webdriver/py/selenium/remote/webdriver/command.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698