I am writing custom test for calculator, to evaluate Ranorex for desktop applications, unfortunately i am unable to open calculator with the following command.
Host.Local.RunApplication("C:\\Windows\\System32\\calc.exe");
also tried
Host.Local.RunApplication("calc.exe");
is there anything i am doing wrong ?
windows calculator is not loading up
Re: windows calculator is not loading up
mistake was in the command.
Host.Local.RunApplication("C:\\Windows\\System32\\calc.exe", "", "", false);
above command s correct and calc is now launched successfully.
Host.Local.RunApplication("C:\\Windows\\System32\\calc.exe", "", "", false);
above command s correct and calc is now launched successfully.