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

Side by Side Diff: chrome/test/functional/chromeos_basic.py

Issue 6410134: Use named automation interface to control primary chrome on ChromeOS (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: nit Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/functional/PYAUTO_TESTS ('k') | chrome/test/pyautolib/chromeos/chromeos_utils.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/python
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import pyauto_functional
7 import pyauto
8
9
10 class ChromeosBasic(pyauto.PyUITest):
11 """Basic tests for ChromeOS.
12
13 Requires ChromeOS to be logged in.
14 """
15
16 def testAppendTabs(self):
17 """Basic test for primary chrome on ChromeOS (named testing interface)."""
18 self.AppendTab(pyauto.GURL('about:version'))
19 self.assertEqual(self.GetTabCount(), 2, msg='Expected 2 tabs')
20
21
22 if __name__ == '__main__':
23 pyauto_functional.Main()
OLDNEW
« no previous file with comments | « chrome/test/functional/PYAUTO_TESTS ('k') | chrome/test/pyautolib/chromeos/chromeos_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698