Search found 24 matches

thanks a lot!
Cool! how could I get nightly build?
No, the entire failing script isn't shown in report.
But I cannot reproduce this in the siesta's example.
I am still debugging it.
My test.t.js shown as below has to wait for store load event, then continue to next action. function(next) { t.waitForStoresToLoad([ userGrid.store ], function() { next(); }); } If there's something wrong in our server side, the waitForStoresToLoad 's callback will never happen and next action will ...
Thank you very much! It works!
Thanks a a lot! It works fine. I have another question, the example in the document shows that we can extend test class as following: Harness.configure({ testClass : MyProject.MyTestClass }) But, we have more than one developers, so we want to have multiple extended test classes for different modula...
I have another idea. There is a JS file containing the action group like: Steps.js var Steps = Steps || {}; Steps.actionGroup = [ function(next){ // action1 console.log(foo); // I want to use the variable defined in *.t.js next(); },{ // action2 }]; In Harness file , import Steps.js to *.t.js. Harne...
Thanks for the reply. I have read that article one months ago. But I don't think it's something related to my question. Could you give me more specific example? My first two actions are { action: "click", target: ">> viewport #project" }, { action: "click", target: &quo...
I have two test script. They have similar behavior. testA.t.js StartTest(function(t) { { // action 1 }, { // action 2 }, { // action A } }); testB.t.js StartTest(function(t) { { // action 1 }, { // action 2 }, { // action B } }); The first two actions (action1 and action2) are the same across test s...
I got the notification.