ContributionsMost RecentMost LikesSolutionsRe: Configuring a remote license server via command line or any script Hi, I want to do automated installation of TestComplete. As the user shall not need to manually configure the license server, I need a way to set up the license server configuration in an automated way (copying a config file, setting registry entries, calling http request via script,… - whatever is possible to be scripted with BAT, Powershell, Python, or any other scripting language, no matter). Configuring a remote license server via command line or any script Hi, I want to configure remote license server but configuring the license server is possible manually. Is there any way to configure remote license server say command line or writing some script? I want this license server configuration for Jenkins setup. Re: Unable to find the object Sys.Browser("iexplore") As I said before, its not about closing instances of a browser. I am able to see the browser is closed. But when I go to Task Manager, there is process for the same in running state. Also, it was working fine on my machine yesterday. When I returned back from 30 minutes break again found the same issue. Currently working from another machine. Is it something machine specific? Please help with the solutions. Thank you in advance! Re: Unable to find the object Sys.Browser("iexplore") Thank you, but the problem was with my machine, the process was running even if I close it through scripts. where it was working as expected on other machines. The priority of that service on my machine was set to 'High'. Ideally it should be set to 'Normal'. Re: Unable to find the object Sys.Browser("iexplore") Hello all, Thank you so much for all your solutions. The problem was with my machine. Though I re-installed internet explorer11. There was 'iexplore.exe' service running even if we close the browser. I did not notice this behaviour before. May be this is because of activation of 'add-ons'. Please let me know if anyone is facing the same. Re: Unable to find the object Sys.Browser("iexplore") First of all I try to close the browser (IE browser). Then I check for the iexplore process if running. If yes then I close the process too. Also yesterday I re-installed- Internet explorer 11 and Testcomplete12 (of course completely uninstalled first ). And I am working with single tab of internet explorer only. Find the code below, if(Sys.WaitBrowser().Exists) { Sys.Browser().Close(); Delay(5000); } var process = Sys.WaitProcess("iexplore", 5000); if (process.Exists) { process.Terminate(); } var url = Driver.Value(0).toString(); Browsers.Item("iexplore").Run(url); Sys.Browser().BrowserWindow(0).Maximize(); page = Sys.Browser("iexplore").Page(url); Re: Unable to find the object Sys.Browser("iexplore") Also Its says 'Waiting for iexplore' for a long time. Even we try to stop it. Doesnt get stopped. One has to go to Task manager to close TestComplete application. Find the below screenshot for more details, Re: Unable to find the object Sys.Browser("iexplore") I am using following code to kill process, var process = Sys.WaitProcess("iexplore", 5000); if (process.Exists) { process.Terminate(); } And its giving me following attached error Re: Unable to find the object Sys.Browser("iexplore") How should I kill the process of 'iexplorer.exe' through script ? Please provide me a solution on this. What I realised is, it remains in running state even after I close the browser using Sys.Browser().Close(); this script. - where 'Browser' is parent class object of this process. I checked in Task manager -> Processes -> 'iexplorer.exe' Re: Unable to find the object Sys.Browser("iexplore") I upgraded to latest version (i.e. 12.10.602.7 ). I found 3 new isseus as below, I deleted browser cache, history and everything. Then I tried to execute the same it is still showing same kind of error with ‘IExplorer’. If I write the same code for Chrome browser it is working as expected(Closes existing browser and opens new). Also I am not able to use run methods(Run/Navigate etc.) for Chrome browser. It is saying unable to navigate null ‘url’, though I am passing it in the method itself. I am able to achieve ‘Closing of Browser(if already open) and launching a new browser’ with below code. [Fails if no browser is open.] In the example This line is not getting executed until we run it in debug mode-> “ Browsers.Item("iexplore").Run();” [Whenever 2nd mentioned scripts in debug mode(i.e. step by step execution using ‘F10’ key) It works well with both the situations opened browser and closed browser.] Also able to achieve ‘Launching a new window(if browser is closed)’ with below code [Fails if browser is already open.] Attached are the screenshots for more understanding.