paulvinders
5 years agoContributor
Jumping to routines in other units defect in TC14?
Hi,
w're calling routines like the following part:
TU_one.sj:
--------------
function T_one() {
this.T_readSomething = T_readSomething;
}
function T_readSomething() {
...
}
TU_two.sj:
--------------
//USEUNIT TU_one
function T_test() {
one = new T_one();
one.T_readSomething();
}
In TestComplete 11, by clicking CTRL + left mousebutton in TU_two.sj on T_readSomething(), we could jump to the routine in TU_one.sj
In TestComplete 14.0, this does not work anymore...
Option 'CTRL + click' in the option-dialogue is activiated.
sincerely
Paul Vinders
SOPTIM AG
Germany
As far as I can see, you’ve made progress in investigating this issue in the support case. The bug was registered by our devs and the workaround for now is using JavaScript in your projects.