ContributionsMost RecentMost LikesSolutionsRe: Step by step overview of signing SOAP XML requests Hi raw80raw, Were you able to find any information on this? I am trying to do the exact same thing but through JAVA. My request is also working through the SOAPUI tool but not from the code. Re: TestComplete with Maven and Jenkins Hi, I noticed that when I use SessionCreator.exe directly from Jenkins (From Windows Batch command in Jenkins), I am able to make the connection and the test complete script runs fine. If I call SessionCreator.exe from JAVA program using ProcessBuilder and call the JAVA program using mvn from Jenkins, the command executes, but nothing happens on the screen. When I see the TestComplete Logs, I see complete white picture in the screenshots. I think the problem is somewhere in the way Jenkins service is running. I have tried running the Jenkins service as Local System Account with 'Allow service to interact with desktop' checked as well as the actual domain user with which i am logged into the system. Any suggestions to make this work? Thanks, Tarun TestComplete with Maven and Jenkins Hi, We have a peculiar requirement. We have a proprietary 3rd party backend system where we have to publish certain records before the application processes it and displays some popups on the UI which we have to validate from TestComplete. There are no direct APIs to place the records in the backend system. So, we have written a Java program that does it for us. Since the starting point for us is a Java program we have designed this flow: We are using Java-Cucumber and in the background step, we connect to the backend system In every test case step, we publish the required record using Java code From the Cucumber test step itself, we invoke TestComplete functions and do the validations on the UI. We do it using Socket Programming. Finally, we integrated all this together and run it using the maven command All the above flow is working fine if we run the tests on the development machine. But, we want to integrate this automation with Jenkins and run the automation on a Jenkins VM client machine. Since the starting point is not TestComplete but JAVA / Maven for us, we cannot use the TestComplete plugin. Can anyone please suggest how we can integrate the above flow with Jenkins? Any ideas if there is a way to specify "UseInteractiveSession" ,"Credentials", "screen resolution" parameters from TestExecute command line. Re: TestComplete with Maven and Jenkins Thanks hkim5 for your response. The flow of all my testcases is like this: Publish a record using JAVA Once the Popup comes on the screen, validate the UI using TestComplete Validate any changes on the backend record again using JAVA Since the starting point of each test case is Java and not TestComplete; that is why I can't use the Jenkins TestComplete plugin. Neither I can place all the records in one go using Maven command and then call the TestComplete scripts in one go to verify the UI. Its Java-TestComplete mixed flow for every test case. In my case it is the Maven project (JAVA) that internally launches TestComplete using Socket Programming (https://smartbear-cc.force.com/portal/KbArticleViewer?name=Script-based-TCP-IP-server&sp=testcomplete). My Java Program calls TestComplete TestExecute like tthis: driverProcess = new ProcessBuilder( testCompletePath, driverInvocationProjectPath, "/run", "/project:" + driverInvocationProjectName, "/u:" + driverInvocationFileName, "/rt:" + driverInvocationFunctionName, "/ns", "/ErrorLog:" + errorLogFilePath, driverInvocationCustomParams ).start(); Yes I am manually running the tests on a dev machine. I need a way that from Java Program, I can specify "UseActiveSession" and Credentials. Right now when i run the automation from Jenkins, the script starts but since the automation runs under Service Account everything on the screen is white (Application is not visible on the UI). Persisting UI Object Is it possible to persist UI object variables across automation runs? I have a peculiar scenario: 1. I am invoking TestComplete functions from Java. 2. From Java, I call TestComplete Functions to launch App 1 and App 2. 3. From Java, I call a TestComplete Function to pefrorm certain action on the App 1 UI. 4. From Java, I call a TestComplete Function to pefrorm certain action on the App 2 UI. 5. Now again from Java, I want to call a TestComplete Function to pefrorm certain action on the App 1 UI. At step 5, the objects recognized during step 3 are no longer valid. So, just wondering if it is possible to persist the UI objects and Arrays created in step 3, and resuse them directly in step 5. Any suggestions / workarounds please? SolvedRe: Adding Project Test Item(s) @ Run Time thru scripts Hi shankar_r: I am facing the same issue. Any luck so far?