def start_app(mymanuscript, path):
    global manuscript
    manuscript = mymanuscript
    wrap_wx_classes()
    Logger.header("Starting application %s" % os.path.basename(path))
    run_python_file([
        path,
    ])
Example #2
0
def start_app(mymanuscript, path):
    global manuscript
    manuscript = mymanuscript
    wrap_wx_classes()
    Logger.header("Starting application %s" % os.path.basename(path))
    run_python_file([path,])
Example #3
0
 def describe_window(self, hwnd):
     if hwnd == None:
         hwnd = win.get_active_window()
     Logger.header(" Window Description hwnd: %d Classname: '%s' Label: '%s'" % (hwnd, win.get_classname(hwnd), win.get_window_text))
     Logger.header2("Native Description")
     self.describe_children(hwnd)