I need to automate installation process of some product, but it has to be exactly installation through passing InstallAnywhere wizard
(it's kinda GUI testing of installation process, so silent install won't work).
Any suggestion how to do this?
I guess the main problem is that installation file (*.exe) is just extractor which extract required files to temp folder and then run java application.
You may try pywinauto to test it on Windows. Java part of the installer may require new "UIA" back-end which will be released in March. For early testing you may try the following steps:
pip install pypiwin32
andpip install comtypes
.python setup.py install
.Try the following code:
PrintControlIdentifiers
output is a hint for further steps. There are possible access names for the controls on the window. Only basic functionality likeClickInput()
andTypeKeys('something')
should work for now.Available methods for the control can be advised here:
Feel free to ask more help if something doesn't work.
Python scripts may require running as Administrator to have an access to the GUI. Or add manifest for python.exe with
uiAccess="true"
.