This commit is contained in:
2025-07-05 02:27:54 +05:00
commit d8fbfb6fb8
9 changed files with 295 additions and 0 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
import algam
def main():
app = algam.connect_to_app("C:/Windows/explorer.exe")
algam.find_text_field_and_input(app,"Проводник", "Поиск в:", "test")
algam.app_close(app)
if __name__ == "__main__":
main()