Test Execute Integration with Zephyr
I have an integration between Zephyr for JIRA Server and Test Complete Test Cases working thanks to this tutorial: https://support.smartbear.com/testcomplete/docs/working-with/integration/zephyr/index.html However, I am wondering what the integration is like with Test Execute. I do not have my pipeline in place yet, but once complete, I am hoping it would be something like this: 1) List of test cases to execute on a daily basis associated to Zephyr test cases 2) Creation of new test cycles in sync with test execution 3) Execute test cases in Test Execute 4) Send results to Zephyr. End result is that for a series of regression test cases executed over the course of say a week, the pipeline could automatically create new Zephyr Test Cycles (and Folders) and update the execution for the test cases within. Is this type of integration possible? What videos, articles, demos on this functionliaty am I missing to achieve this?Solved4.3KViews0likes8CommentsRegistry key is not getting added for auto Login using C# script.
Hi, I am trying to write registry key for auto login using C# script. The script is getting executed, but the registry is not getting added. My code is shown as below: Initially I was getting an error stated as "Registry root is invalid",but running Test Complete as Administrator, the problem got solved. Now, that thescript is getting executed registry is not getting updated.Please help. function Test_FWC_UTL_Registry_Write_Registry_Key_Value() { var strKey strKey = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon" FWC_UTL_Registry_Write_Registry_Key_Value (strKey, "DefaultUsername", "REG_SZ", "XXXXXXXX") } function FWC_UTL_Registry_Write_Registry_Key_Value(strRegistryKey, strRegName, strRegType, strRegKeyValue) { var WshShellObj,OutputVal WshShellObj = Sys["OleObject"]("Wscript.Shell") OutputVal = 0 if (WshShellObj == null) { GL_ErrMessage = "Couldn't able to create Shell object" } else { WshShellObj.RegWrite(strRegistryKey + "\\" + strRegName , strRegKeyValue, aqString["ToUpper"](strRegType)) WshShellObj = null OutputVal = 1 return OutputVal; } }Solved4.2KViews0likes9CommentsPrinting Test Log Settings
Hello, Does anyone utilize the print function in Test Complete for generating reports/documentation of the Test log? I would like to use the print function to generate summaries of test logs. However, I've noticed that there seems to be issues with scaling in the report, making it unreadable. See figures 1a and 1b attached. It seems print function captures a screen shot of the Test Log summary and places it unto a document. I've noticed that if I minimize the test log window, and select print preview, the summary will have a different scaling then if the test log was maximized. See figures 2a and 2b attached. Are there any seetings that I can adjust for a consistant format? Thank you! Thank you!Solved2.2KViews0likes2Commentsset StopOnError via script
I am trying to write a simple script that runs each time a project starts. It is to loop through the test items and shut off the StopOnError property. Here is the code I have right now that doessn't work (JScript): var i; for(i = 0; i < Project.TestItems.ItemCount; i++) { Project.TestItems.TestItem(i).StopOnError = 0; } This throws and error: "Invalid number of arguments or invalid property assignment" Is this specific task even possible?Solved1.2KViews0likes2CommentsUnable to open Project Suite in Test Complete and a message is displayed "Not enough storage"
Hi, i am unable to open a project suite and a message is displayed "Not enough storage space to process this command" and Test complete hangs or Test complete is freezed and i had to kill the process from task manager. More details: Application type: Desktop application. Drive has enough space up 15 Gb. Size of Project Suite : 683 MB. Thanks in advance Regards, FerozSolved1KViews0likes1CommentHow to add python extension, pywin32, to existing python, v3.4,in TC with registry key dependencies?
We specifically want to add the python extension pywin32 so that we can manipulate the services that are on our test environment, but the extensions won't install in a friendly manner because of how Test Complete 11 uses python. Like suggested we have modified the path for TC's python as suggested but importing different modules all spring up with dll errors. The path when we do alog.message in the actual test script comes up blank.1KViews0likes1CommentFacing problem when sharing NameMapping objects across the project suite
Hi, In our project we are having two different projects in single project suite with same NameMapping file (shared from existing project). it was mapped successfully when I am try to highlight the objects. but when I am trying to execute the script some unknown additional panel section is including in object tree structure. so TC failing to fetch the object from mapping file. could you please help us to resolve this issue.967Views0likes2CommentsAzure Devops Database connection
Hi, We are currently in process of setting up agent in the Azure pipeline for TestComplete. And, Our scripts does UI validation as well as some Database validations (SQLs). Our admin has setup Self Hosted Agent with InteractiveUserSession for running the scripts andhas some security concerns in exposing the database connections through the pipeline. Wondering, this is just not unique case for our organization, can anyone provide how they dealt with DB connections in Azure Devops. Thanks!653Views0likes1CommentTestComplete: Support for native results files (MHT files)
Currently, Zephyr Enterprise imports test automation results from TestComplete via the jUnit XML generated by TestComplete. However, the JUnit XML has limitations and thus does not include all the details available in TestComplete's native results files (MHT files). Since Zephyr Enterprise is the system of record, we'd like to ensure that those details are kept in Zephyr. OLD ID:- ZENT-I-87Pass tags to TestComplete from Zephyr via ZBot
This is regarding TestComplete integration from Zephyr, we create a batch file of the TestComplete project (Keeping tags in the Execution Plan). And we are able to trigger the scripts from Zephyr successfully. However, we need the option to pass the Tags for execution from Zephyr. Note: We have BDD Framework in our TestComplete and we are triggering the execution by passing Tags in the Execution Plan OLD ID:- ZENT-I-352