Forum Discussion

lalit_singh's avatar
lalit_singh
Contributor
2 years ago

Launching application without addding it in TestedApp

Hello everyone;

 

I am automating an application , but it shows data as per configuration done another application (they both lies in same directory)

 

which should be better mode of running another application 

Ideally , I dont want to add another application under TestedApp

 

  • rraghvani's avatar
    rraghvani
    Champion Level 3

    Not sure why you would not want to use TestedApp, but an alternative way for example is,

    function run()
    {
        var oExec = WshShell.Exec("notepad");
        while (oExec.Status == 0) {
            aqUtils.Delay(1000);
        }
    }