Package dogtail
[hide private]
[frames] | no frames]

Source Code for Package dogtail

 1  # -*- coding: UTF-8 -*- 
 2  """ 
 3  GUI test tool and automation framework that uses Accessibility (a11y) technologies to communicate with desktop applications. 
 4   
 5  Authors: Zack Cerza <zcerza@redhat.com>, Ed Rousseau <rousseau@redhat.com>, David Malcolm <dmalcolm@redhat.com>, Vita Humpa <vhumpa@redhat.com> 
 6  """ 
 7   
 8  __author__ = """Zack Cerza <zcerza@redhat.com>, 
 9  Ed Rousseau <rousseau@redhat.com>, 
10  David Malcolm <dmalcolm@redhat.com>, 
11  Vita Humpa <vhumpa@redhat.com>""" 
12  __version__ = "0.9.0" 
13  __copyright__ = "Copyright © 2005-2014 Red Hat, Inc." 
14  __license__ = "GPL" 
15  __all__ = ("config", "predicate", 
16             "procedural", "tc", "tree", "utils", "errors") 
17