ContributionsMost RecentMost LikesSolutionsRe: Re-running failed test cases tristaanogre Marsha_R baxatob karkadil First of all - Thank you for so much brainstorming :) Secondly, my scenario is if I run 15 Test Cases together, 10-12 of them pass but the remaining fail(due to Cache issues,intermittent issues,etc.). The failed test cases when re-executed then pass(without needing any changes into them). So I was thinking if I could group them and then re-run them in the end after all the 15 test cases have run,that will solve my problem. That is my general idea. Re: Re-running failed test cases tristaanogre I am afraid that doesn't help me too much. Isn't there any way through which I can just move the failed test items on the test items page to a new folder and then re-execute the new group again? Re: How to rerun a failed test item for a given iteration count. maxtester I want to achieve the exact same results which you have done. Could you please help me with some more details? How to copy failed test cases to .mds file? How to then re-run the execution with only the failed test cases? Re-running failed test cases Hello, I am running a set of 15 tests.I want to re-run the failed test cases at the end of test execution. Is there anyway through which I can identify the failed test cases and then re-run them at the end of execution. Thank you SolvedRe: Need help in counting the total no. of elements in a table It is working for the first time.Post that its failing. My guess is its not looping correctly.I used arr.length & its correctly returning me 4 rows for the table. The error is below: Unable to obtain the item's rectangle. Re: Need help in counting the total no. of elements in a table I couldn't count the no. of elements. The For loop isn't navigating.Can you find any error in the code? Need help in counting the total no. of elements in a table Hi, I am trying to count the no. of elements present in a table and if they are present, I need to click on them. Suppose 3 elements are present, I need to click on each one of them. Below is my code: function findata() { //if (page.FindChildByXPath("//table[contains(@id,'repeaterTable')]//tr//td/a[@class = 'textlink hand']") let arr = page.EvaluateXPath("//table[contains(@id,'repeaterTable')]//tr//td/a[@class = 'textlink hand']"); if (!strictEqual(arr,null)) { for (i in arr) {arr[i].Click(); page.FindChildByXPath("//input[contains(@id,'buttonListReturn')]").Click(); Delay(2000) i++; } } else { Log.Error("Nothing found"); } } JavaScript error Hi , I am getting a javascript error using the below code. Code: var Page = Sys.Browser("chrome").Page("*"); function InviteSupplier() { Page.FindChildByXPath("//span[contains(text(),'Invitation to Join')]").Click(); } Error: TypeError Cannot read property 'Click' of null Error location: Unit: "V1 product codes\V1 product codes\Script\Function_Library" Line: 44 Column: 73. TypeError Cannot read property 'Click' of null Error location: Unit: "V1 product codes\V1 product codes\Script\Function_Library" Line: 44 Column: 73. How to import values from Excel for doing data driven testing?? How to import values from Excel for doing data driven testing??