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

Unified Diff: chrome/test/pyautolib/pyautolib.cc

Issue 7523060: Let pyauto create an attached webdriver instance to manipulate web pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 5 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
Index: chrome/test/pyautolib/pyautolib.cc
diff --git a/chrome/test/pyautolib/pyautolib.cc b/chrome/test/pyautolib/pyautolib.cc
index 3db59eb2682ff41d710a798d67b91eb94770dbc7..8a58e8ba35faa34f0fcb5ada166ba0bfe727f97f 100644
--- a/chrome/test/pyautolib/pyautolib.cc
+++ b/chrome/test/pyautolib/pyautolib.cc
@@ -69,7 +69,7 @@ void PyUITestBase::Initialize(const FilePath& browser_dir) {
ProxyLauncher* PyUITestBase::CreateProxyLauncher() {
if (named_channel_id_.empty())
return new AnonymousProxyLauncher(false);
- return new NamedProxyLauncher(named_channel_id_, false, false);
+ return new NamedProxyLauncher(named_channel_id_, false, true, false);
}
void PyUITestBase::SetUp() {

Powered by Google App Engine
This is Rietveld 408576698