ContributionsMost RecentMost LikesSolutionsRe: Smartbear to Acquire Zephyr Hi Tania, currently we are thinking on how report into JIRA the results of the automated tests. Currently we have a custom field in Zephyr tests that indicates wether the test is manual or automated. What we want to put in place is a corelation between 1 Zephyr test in JIRA and 1 test (or sub-part of a test or a particular execution of a test) in TestComplete. Each time we will run automated test, we plan that, through the ZAPI interface there is: - creation of a new test cycle (or some new tests cycles), on the tested build. - populating the cycle with new executions of the tests that will be performed. - setting of the tests execution status to PASS or FAIL according to results. The objectives is to have, in JIRA an overview of all that was done on a particular build, or a particular version or..., both manually and automatically. Christophe Smartbear to Acquire Zephyr Hi All, I've just received the e-mail about Smartbear will be acquiring Zephyr. We are currently using TestComplete and Zephyr with JIRA. We have a plan to link both throught the Zephyr API. Is there any particular plan on your side to connect both products ? Or may be it's a bit too early to ask ? Thank you, Christophe Re: Accessing TC documentation for previous version tristaanogre wrote: The web version only displays the documentation for the currently released version It wasn't the case last time I used it (long time ago apparently) tristaanogre wrote: just the web is more easily searchable and navigable than the help. Yes that's the reason I was looking for the web version. Thank you for answers, I will do with the local version. Christophe Re: Accessing TC documentation for previous version Hi baxatob, I use the version 9.0.1069.7. I get it in the windows help form. Regret the web version that was more usefull but it will probably do the job. Thank you for help, Christophe Accessing TC documentation for previous version Hi, I would like to access to the documentation of previous Test Complete version. How is this possible ? Thank you for help, Christophe SolvedGeneralEvents_OnStopTest(Sender) - differentiate manual stop from others Hi, In order to perform some actions when ending a test, I use the classic function GeneralEvents_OnStopTest(Sender) linked to the OnStopTest event. I would like to have a different behavior when I manually stop a test (using the STOP button) than when a test closes for another reason. More particularly when a test ended, I check for remaining processes and kill them if exist, that's I would like to avoid when stopping test manually. I didn't find a way to discriminate between the two situations. First I was looking to check some properties of the Sender object but this one is always "undefined". In another hand, as an error labelled "Script execution was interrupted." is added to the Log when a test is manually stopped, I've also tried to check for the "Script execution was interrupted." message in the GeneralEvents_OnLogError(Sender, LogParams) method, but this method is not called when the test is manually stopped. Is there a reason why Sender is always undefined ? Is there a way to find when test is stopped manually ? Thanks for your help, Best, Christophe I use TC 9.0.1069.7 (and can't upgrade for compatibility reason) and script are in C#Script. Re: Object required error on While loop Hi masalvacion, at lane 14, when you do var b = Excel.Cells(12,2); you get a reference on the cell object, not the value of the cell. Like this, you try to compare an integer with an object that produces the error. Try var b = Excel.Cells(12,2).Value; Regards, Christophe Re: Parallel Execution of different projects on different computer. Hi maximojo, thank you for your answer. I finally found a way to do what I want by reading what you wrote. I've a simple method function startJobsForSlave1() { NetworkSuite.Jobs.ItemByName("SlaveJobs").Run(false); } and I add a ProjectItem that call this method when it's suitable in my tests. Then TE on master starts the tests on the slave computer and in the same time continue on the master one. Many thanks for your help, Christophe Re: Parallel Execution of different projects on different computer. Hi altemann and maximojo, Sorry for the late reply I needed to work on other priorities. Thank you for your help, it help me to better understand how it works. So if I've well understood, I need to run the Jobs with a script and not as an item in the master project. And the script is called by an item in the project. In itself it's not a problem. However if it allows to run 2 jobs on 2 slave computers, this doesn't allow to run some tests on the master computer in the same time than on a slave computer as it will wait for the end of a test item before starting the next one ? Thanks for your help, regards, Christophe Parallel Execution of different projects on different computer. Hi, We re trying to use several computer for tests in order to cover different situations. I've a Master computer and 2 Slave. From the Master I can run tests on first on the master, after on the first slave and then on the second slave. However I didn't find how to run all tests in the same time. Note that the tests are fully independent. I've a first project on Master, 2 projects that are copied on the slave but I don't find how to start them in the same time from the Project suite or the master project. This page shows the principle but no explanation on how to do it. Thanks for your help, regards, Christophe