diff options
Diffstat (limited to 'chrome/test/pyautolib')
-rw-r--r-- | chrome/test/pyautolib/pyautolib.i | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/pyautolib/pyautolib.i b/chrome/test/pyautolib/pyautolib.i index 72671f1..6784694 100644 --- a/chrome/test/pyautolib/pyautolib.i +++ b/chrome/test/pyautolib/pyautolib.i @@ -120,6 +120,10 @@ class TabProxy { AutomationMsg_NavigationResponseValues NavigateToURLBlockUntilNavigationsComplete( const GURL& url, int number_of_navigations); + %feature("docstring", "Navigates to a given GURL asynchronously. " + "Does not wait for the navigation to complete, or even begin; " + "Use NavigateToURL() if you want to wait.") NavigateToURLAsync; + bool TabProxy::NavigateToURLAsync(const GURL& url); %feature("docstring", "Equivalent to hitting the Back button. " "Blocks until navigation completes.") GoBack; AutomationMsg_NavigationResponseValues GoBack(); |