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

Unified Diff: chrome/test/functional/browser.py

Issue 10830193: Remove SWIGged use of BrowserProxy and TabProxy from PyAuto tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Used named arguments and deleted unused test files, as suggested by Nirnimesh. Created 8 years, 4 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/automation/tab_proxy.cc ('k') | chrome/test/functional/doc_viewing.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/browser.py
diff --git a/chrome/test/functional/browser.py b/chrome/test/functional/browser.py
index 263ba1e4c7aec974c4a855012fd993af2181433d..6666bf97820e5460154feaa16ad3ba09e9c5f83f 100755
--- a/chrome/test/functional/browser.py
+++ b/chrome/test/functional/browser.py
@@ -188,8 +188,8 @@ class BrowserTest(pyauto.PyUITest):
self.KillRendererProcess(shared_pid)
# Reload the parent and popup windows.
- self.GetBrowserWindow(0).GetTab(0).Reload()
- self.GetBrowserWindow(1).GetTab(0).Reload()
+ self.ReloadTab()
+ self.ReloadTab(windex=1)
# Check if both are sharing a process id.
self.assertEquals(
self.GetBrowserInfo()['windows'][0]['tabs'][0]['renderer_pid'],
« no previous file with comments | « chrome/test/automation/tab_proxy.cc ('k') | chrome/test/functional/doc_viewing.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698