Hello,
I used autoit for automatic uninstallation of installshield application.
The problem is that I am unable to close the last GUI screen using autoit.
the last GUI screen asks to click "Finish" to confirm the close of
the successful uninstalled application.
The code below works fine for the first GUI button, but doesn't work for the last GUI.
WinWait("Confirm Uninstall", "Do you want to completely remove the selected appl
ication and all of its components?")
WinActivate("Confirm Uninstall", "Do you want to completely remove the selected
application and all of its components?")
ControlClick("Confirm Uninstall", "OK", "Button1")
WinWait("InstallShield Wizard", "xxxx de-installation is complete")
WinActivate("InstallShield Wizard", "xxxx de-installation is complete")
ControlClick("InstallShield Wizard", "xxxx de-installation is complete", "Button2")
During the installation, the GUI with title "InstallShield Wizard" showed the option of "Cancel" button,
and then finally changed to the button "Finish". I wonder if I need to add a special WinWait() to skip such GUI
Thanks.
Peter
I used autoit for automatic uninstallation of installshield application.
The problem is that I am unable to close the last GUI screen using autoit.
the last GUI screen asks to click "Finish" to confirm the close of
the successful uninstalled application.
The code below works fine for the first GUI button, but doesn't work for the last GUI.
WinWait("Confirm Uninstall", "Do you want to completely remove the selected appl
ication and all of its components?")
WinActivate("Confirm Uninstall", "Do you want to completely remove the selected
application and all of its components?")
ControlClick("Confirm Uninstall", "OK", "Button1")
WinWait("InstallShield Wizard", "xxxx de-installation is complete")
WinActivate("InstallShield Wizard", "xxxx de-installation is complete")
ControlClick("InstallShield Wizard", "xxxx de-installation is complete", "Button2")
During the installation, the GUI with title "InstallShield Wizard" showed the option of "Cancel" button,
and then finally changed to the button "Finish". I wonder if I need to add a special WinWait() to skip such GUI
Thanks.
Peter