blob: 4d9209dac0318d1a94739be7153f85e4a9161cb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env python
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import sys
import pyauto_functional
import pyauto
import remote_host
if __name__ == '__main__':
pyauto_suite = pyauto.PyUITestSuite(sys.argv)
remote_host.RemoteHost(('', 7410))
del pyauto_suite
|