From 253f5ea9ce5df59b1a22759a7d0431275f5cde24 Mon Sep 17 00:00:00 2001 From: Stewie Date: Sat, 14 May 2022 17:18:10 -0400 Subject: [PATCH 1/2] Update ApacheAutomate.py --- ApacheAutomate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ApacheAutomate.py b/ApacheAutomate.py index e2ff1bd..b618069 100644 --- a/ApacheAutomate.py +++ b/ApacheAutomate.py @@ -14,6 +14,9 @@ def open_apache3_iso(repo_name): app = application.Application(backend="win32").start('apache3.exe') time.sleep(8) + windows = application.Desktop(backend="uia").windows() + print([w.window_text() for w in windows]) + app = application.Application(backend="win32").connect(title='Apache3 Build 3.10.6 (BETA)') #Get the window about FREE license From 54f55741084e0cf41701a11d2cae719f57e5eef4 Mon Sep 17 00:00:00 2001 From: Stewie Date: Sat, 14 May 2022 17:23:49 -0400 Subject: [PATCH 2/2] Refreshing PythonLib repo --- ToolsTales_Executable.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ToolsTales_Executable.py b/ToolsTales_Executable.py index 33d38da..65c133b 100644 --- a/ToolsTales_Executable.py +++ b/ToolsTales_Executable.py @@ -182,6 +182,7 @@ if __name__ == "__main__": args = get_arguments() #print(vars(args)) + RepoFunctions.refresh_repo("PythonLib") game_name = args.game tales_instance = getTalesInstance(game_name)