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

Side by Side Diff: tools/chrome_proxy/webdriver/simple_smoke.py

Issue 2528483004: Adds skeleton of new integration test framework. (Closed)
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import time
6
7 from common import IntegrationTest
8 from common import TestDriver
9
10
11 class SimpleSmoke(IntegrationTest):
12
13 def TestCheckPageWithProxy(self):
14 with TestDriver() as t:
15 t.AddChromeArgs(['--enable-spdy-proxy-auth', '--disable-quic'])
tbansal1 2016/11/29 18:38:53 I do not think we need "disable-quic" in the new s
Robert Ogden 2016/11/29 18:53:54 Done.
16 t.SetURL('http://check.googlezip.net/test.html')
17 t.LoadPage()
18 print 'Document Title: ', t.ExecuteJavascript('document.title')
19 time.sleep(5)
20
21 if __name__ == '__main__':
22 test = SimpleSmoke()
23 test.RunAllTests()
OLDNEW
« tools/chrome_proxy/webdriver/common.py ('K') | « tools/chrome_proxy/webdriver/common.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698