Questions tagged [autoit]

AutoIt v3 is a free scripting language that resembles BASIC and is specifically created for automating tasks within the Windows graphical user interface (GUI) as well as general scripting purposes.

Automating the login process for an application using Python and Selenium for GUI automation

Currently, I am working on a project that requires gathering information from various websites within the company as well as extracting data from a Windows application built in Java. I successfully retrieved all necessary information from the websites usi ...

Autoit script fails to run in Chrome web browser

Here is the code snippet for uploading files using Firefox (.au3 file): ControlFocus("File Upload","","Edit1") ControlSetText("File Upload","","Edit1","C:\Users\chaithu\Desktop\fileupload.html") ControlClick("File Upload","","Button1") ...

Exploring the power of AutoIt in iterating through a JSON array

I'm in need of assistance with automating a script to loop through an array and return a specific value from each object. [{"var1":"test1","var2":"test1"},{"var1":"test2","var2":"test2"},{"var1":"test3","var2":"test3"}] My goal is to extract the var ...

Automatically generate an .au3 script using my C# code

I am faced with a challenge of automatically compiling an .Au3 script code and then running it. The script (au3 file) is updated automatically, but in order for the updates to take effect when I run the script, it needs to be compiled first. While there ar ...

Automate downloading files from Internet Explorer and saving them to a specified directory using AutoIT

I am facing a requirement to download a file from Internet Explorer 11 and save it to a specific location using Selenium and AutoIT. The path where the file should be saved is provided through the command line. Below is the code I have implemented: ; Get ...

Guide to importing various files with AutoIt

I've been working with the following code snippet: ControlFocus("File Upload","","File1") ControlSetText("File Upload","","File1",'"C:UsersDesktopimage1.png" "C:UsersDesktopimage1.png" "C:UsersDesktopimage2.png" "C:UsersDesktopimage3.png" "C: ...

Pyinstaller is throwing an error message stating that it is unable to load AutoItX from the

When running my program from the command line, everything works perfectly fine. Now I need to create an Executable file, so I attempted to use pyinstaller. However, it seems that pyinstaller is unable to recognize the autoit module when automatically analy ...