ContributionsMost RecentMost LikesSolutionsI am not getting my Smartbear Licensing login credentials Can you please look into this issue as i want togenerate a new key for this license -> SolvedRe: i want to upload file to server using sftp in testcomplete This solution partially helped but resolution was something different . we have to Install python greater than 3.6.4 to make it compatible with testcomplete . Also use this line to point to specific python version before importing pysftp os.sys.path.insert(0, "C:\\Python36\Lib\\site-packages") i want to upload file to server using sftp in testcomplete Can anyone paste the code so that i can refer and impliment accordingly Currently i am using this below code : but everytime i am gettingModuleNotFoundError: No module named 'pysftp' .i have done Pip install pysftp and cut pasted downloaded folders inside folderC:\Program Files (x86)\SmartBear\TestComplete 14\Bin\Extensions\Python\Python36\Lib i am not able to figure out what is the exact issue . Need some suggesstions import pysftp as sftp from ssh_key import SshUtil def upload_report(reportFilePath, dashboard_report_path): cnopts = sftp.CnOpts() cnopts.hostkeys = None try: server = sftp.Connection(host='automation-dashboard', username='harman', password='harman123', cnopts=cnopts) server.put(reportFilePath, dashboard_report_path) server.close() except Exception as e: print(str(e)) os.chdir(Log.Path) time.sleep(10) SolvedHow can i poll SCM using perforce ? I basically want to check if the .exe file is updated in perforce folder for every 3 hours if yes , then I want to Execute tests on Testcomplete using jenkins can someone help me syntax to poll SCM in perforce software Re: Jenkins integration with Test complete Hey i got the solution I had testComplete and Test Execute installed in my system . Uninstalling TestExecute really helped solving my problem ( Because my test Execute was not licensed ) Thanks for your attention Can i Use Test complete Without using Test Execute ? to run tests through jenkins i Have TestComplete and Test Execute both installed in my systems can I uninstall Test Execute (since its not licensed ) and Run jenkins integration with test complete to run Automation Tests through scheduling SolvedRe: Jenkins integration with Test complete Nothing really is helping me . can I get any other reference Re: [TestComplete] Test runner exit code: -10 (Unable to create a user session). Yes, I did follow! the instructions But I am facing same issue [TestComplete] Test runner exit code: -10 (Unable to create a user session). My slave and Master Node is connected: but when I do build now: I get the following error. can anyone figure out why is this error? Started by user unknown or anonymous Running as SYSTEM Building on master in workspace C:\Windows\system32\config\systemprofile\AppData\Local\Jenkins\.jenkins\workspace\tutorial [TestComplete] The test execution started (LAC_Gilera/LAC_Gilera/JBL_LAC/Script|driver|runProjectAndGenerateReport). [TestComplete] Found TestComplete/TestExecute installations: Type: TC, Version: 14.30.3743.7, Path: "C:\Program Files (x86)\SmartBear\TestComplete 14\x64\bin\TestComplete.exe" Type: TE, Version: 14.74.437.11, Path: "C:\Program Files (x86)\SmartBear\TestExecute 14\x64\bin\TestExecute.exe" [TestComplete] Selected TestComplete/TestExecute installation: Type: TE, Version: 14.74.437.11, Path: "C:\Program Files (x86)\SmartBear\TestExecute 14\x64\bin\TestExecute.exe" [TestComplete] Launching the test runner. $ '"C:\Program Files (x86)\SmartBear\TestExecute 14\bin\TestCompleteService14.exe"' //LogonAndExecute //lDomain: "" //lName: "" //lPassword: ******** //lTimeout: "-1" //lUseActiveSession: "true" //lCommandLine: '""C:\Program Files (x86)\SmartBear\TestExecute 14\x64\bin\TestExecute.exe" C:\Workspace_t580\SDIG\SA_Test\AutoTests\LAC\LAC_Gilera\JBL_LAC\LAC_Gilera.pjs /run /SilentMode /ForceConversion /ns /exit /ExportLog:C:\Windows\system32\config\systemprofile\AppData\Local\Jenkins\.jenkins\workspace\tutorial\1622034637472.tclogx /ExportLog:C:\Windows\system32\config\systemprofile\AppData\Local\Jenkins\.jenkins\workspace\tutorial\1622034637472.htmlx /ErrorLog:C:\Windows\system32\config\systemprofile\AppData\Local\Jenkins\.jenkins\workspace\tutorial\1622034637472.txt /project:LAC_Gilera /unit:JBL_LAC /routine:Script|driver|runProjectAndGenerateReport /DoNotShowLog /JenkinsTCPluginVersion:2.6.2"' [TestComplete] Test runner exit code: -10 (Unable to create a user session). [TestComplete] [WARNING] Unable to find the log file "1622034637472.tclogx". [TestComplete] [WARNING] Unable to find the log file "1622034637472.htmlx". [TestComplete] [WARNING] Errors occurred during the test execution. [TestComplete] Marking the build as UNSTABLE. [TestComplete] [WARNING] Unable to publish test results (xml data is empty). [TestComplete] The test execution finished (LAC_Gilera/LAC_Gilera/JBL_LAC/Script|driver|runProjectAndGenerateReport). Build step 'TestComplete Test' changed build result to UNSTABLE Finished: UNSTABLE SolvedJenkins integration with Test complete I need someones who can help me with pipeline script for Running your Testcomplete tests ?? Solved