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

Side by Side Diff: chrome/test/pyautolib/pyautolib.i

Issue 1702010: Add 2 tests for history. (Closed)
Patch Set: update Created 10 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 unified diff | Download patch
« no previous file with comments | « chrome/test/pyautolib/pyauto.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Swig Interface for PyAuto. 5 // Swig Interface for PyAuto.
6 // PyAuto makes the Automation Proxy interface available in Python 6 // PyAuto makes the Automation Proxy interface available in Python
7 // 7 //
8 // Running swig as: 8 // Running swig as:
9 // swig -python -c++ chrome/test/pyautolib/pyautolib.i 9 // swig -python -c++ chrome/test/pyautolib/pyautolib.i
10 // would generate pyautolib.py, pyautolib_wrap.cxx 10 // would generate pyautolib.py, pyautolib_wrap.cxx
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 // TabProxy 98 // TabProxy
99 %feature("docstring", "Proxy handle to a tab.") TabProxy; 99 %feature("docstring", "Proxy handle to a tab.") TabProxy;
100 %nodefaultctor TabProxy; 100 %nodefaultctor TabProxy;
101 %nodefaultdtor TabProxy; 101 %nodefaultdtor TabProxy;
102 class TabProxy { 102 class TabProxy {
103 public: 103 public:
104 // Navigation 104 // Navigation
105 %feature("docstring", "Navigates to a given GURL. " 105 %feature("docstring", "Navigates to a given GURL. "
106 "Blocks until the navigation completes. ") NavigateToURL; 106 "Blocks until the navigation completes. ") NavigateToURL;
107 AutomationMsg_NavigationResponseValues NavigateToURL(const GURL& url); 107 AutomationMsg_NavigationResponseValues NavigateToURL(const GURL& url);
108 %feature("docstring", "Navigates to a given GURL. Blocks until the given "
109 "number of navigations complete.")
110 NavigateToURLBlockUntilNavigationsComplete;
111 AutomationMsg_NavigationResponseValues
112 NavigateToURLBlockUntilNavigationsComplete(
113 const GURL& url, int number_of_navigations);
108 %feature("docstring", "Equivalent to hitting the Back button. " 114 %feature("docstring", "Equivalent to hitting the Back button. "
109 "Blocks until navigation completes.") GoBack; 115 "Blocks until navigation completes.") GoBack;
110 AutomationMsg_NavigationResponseValues GoBack(); 116 AutomationMsg_NavigationResponseValues GoBack();
111 %feature("docstring", "Equivalent to hitting the Forward button. " 117 %feature("docstring", "Equivalent to hitting the Forward button. "
112 "Blocks until navigation completes.") GoForward; 118 "Blocks until navigation completes.") GoForward;
113 AutomationMsg_NavigationResponseValues GoForward(); 119 AutomationMsg_NavigationResponseValues GoForward();
114 %feature("docstring", "Equivalent to hitting the Reload button. " 120 %feature("docstring", "Equivalent to hitting the Reload button. "
115 "Blocks until navigation completes.") Reload; 121 "Blocks until navigation completes.") Reload;
116 AutomationMsg_NavigationResponseValues Reload(); 122 AutomationMsg_NavigationResponseValues Reload();
117 %feature("docstring", "Closes the tab. Supply True to wait " 123 %feature("docstring", "Closes the tab. Supply True to wait "
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 315
310 // Meta-method 316 // Meta-method
311 %feature("docstring", "Send a sync JSON request to Chrome. " 317 %feature("docstring", "Send a sync JSON request to Chrome. "
312 "Returns a JSON dict as a response. " 318 "Returns a JSON dict as a response. "
313 "Internal method.") 319 "Internal method.")
314 _SendJSONRequest; 320 _SendJSONRequest;
315 std::string _SendJSONRequest(int window_index, std::string request); 321 std::string _SendJSONRequest(int window_index, std::string request);
316 322
317 }; 323 };
318 324
OLDNEW
« no previous file with comments | « chrome/test/pyautolib/pyauto.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698