Forum Discussion
Inok
14 years agoOccasional Contributor
Hello Jay,
In the thread you mention they discuss a solution using a script. I just have a recorded Test and want to run this test. I am in the evaluation process of TestComplete and haven't used scripts till now. Is the only way for testing a msi installer using a script? I assume this is a common problem.
I tried to create a script Context Menu -> Creating Script and get this (Just one click)
In the thread you mention they discuss a solution using a script. I just have a recorded Test and want to run this test. I am in the evaluation process of TestComplete and haven't used scripts till now. Is the only way for testing a msi installer using a script? I assume this is a common problem.
I tried to create a script Context Menu -> Creating Script and get this (Just one click)
Sub Install()
'Runs the "setup" tested application.
Call TestedApps.setup.Run
'Clicks the 'btnWeiter' button.
Call Aliases.MSIEXEC.wndMsiDialogCloseClass.btnWeiter.ClickButton
End Sub
According the thead I should change the property MSIEXEC to MSIEXEC*
Thanks for any help.