ContributionsMost RecentMost LikesSolutionsRe: can we test a desktop application in background using Jenkins Hi, I am able to run the jobs. But i want to execute the jenkin jobs in background i.e without opening the test complete user session on UI. I want to run the entire things in background without opening the user session in system can we test a desktop application in background using Jenkins Hi, I want to run desktop applications in background using jenkins jobs, so when i am trying to run the jenkins jobs, it is always opening the new sessions for Testcomplete and for the tested desktop applications. But i want to run the Testcomplete and desktop applications in background. How can i achieve this?.Both the jenkins ,Desktop application and Test complete is there in remote desktop. i scheduled some jobs for particular time to run the jenkins jobs and i didn't connecting to the Remote desktop.The jobs are failing and shows the error like The operation cannot be performed, because the user session is disconnected object required error Hi all, I am upgrading from 14 to 15 version recently. I am unable to get it this one, some times the code is executing successfully and sometimes getting Object required error, below one is the code Dim TestReportFolder ,Test_reportexcel ,FinalTest_reportexcel Function GetRecentExcel_InsertData Set fso = CreateObject("Scripting.FileSystemObject") Set recentExcel = Nothing For Each file in fso.GetFolder(Test_Report_Path).Files If (recentExcel is Nothing) Then Set recentExcel = file ElseIf (file.DateLastModified > recentExcel.DateLastModified) Then Set recentExcel = file End If Next If recentExcel is Nothing Then log.Message( "No recent Test Report") Else Test_reportexcel = recentExcel.Name log.Message(Test_reportexcel) End If aqUtils.Delay 1000 aqUtils.Delay 2000 Set app = Sys.OleObject("Excel.Application") TestReportFolder = Test_Report_Path FinalTest_reportexcel = TestReportFolder + "\" + Test_reportexcel log.Message(FinalTest_reportexcel) Set TestReportWorkBook =app.Workbooks.Open(FinalTest_reportexcel) --->at this line i am getting object required error