vajindarladdadFrequent ContributorJoined 11 years ago96 Posts38 LikesLikes received7 SolutionsView All Badges
ContributionsMost RecentMost LikesSolutionsObject IdentificationHi Team, Whenever I do "copy Identification" , my source code becomes very long , bulky and unreadable. Is there any other way to do the same and make my source code very small ? Thanks, Vajindar.Name-mapping file in TestLeft Hi Experts, Can I import a name-mapping created in TestComplete to TestLeft ? If Yes , Can you just share me a link , where this procedure is mentioned ? I did not find any stuff for on the same . Thanks, Vajindar Re: How to create .exe file of TestLeft project ? Thanks Alex. That was really helpful. How to create .exe file of TestLeft project ? Hi Team, I want to create .exe file of my TestLeft project which is created using MSTest. I tried searching the procedure to create .exe but I did not fine any help on that. Can anyone please guide me , how to create .exe file of my TestLeft project ? Thanks, Vajindar. SolvedRe: How to use testcomplete in Agile Hi Darshana, We were creating the regression test and adding it to our regression suit In addition to that we were creating API tests for the same which does not require any UI. Coming back to your questions: Q) How actually the automation has applied on agile projects? A) First , you need to understand what new is being developed in the currect sprint , then you need to analyse which test would suit best to check the functionality (API , UI based test etc. )& then develop the test. I think creating API Test would suit more for your requirement. Q) Is the same regreassion,load and performace scripts are used? A) Yes , You can use the same suit but minimal modification may be required. Re: how to search for contents,copy text from one excel file to another excel in vbscript Hi, Range object will help you to solve your problem. SYNTAX : objRange.Find("Text to be searched in excel file) http://stackoverflow.com/questions/19876039/how-to-find-an-exact-value-in-an-excel-sheet https://msdn.microsoft.com/en-us/library/office/ff839746.aspx Re: How to use testcomplete in Agile Hi Darshana, Copied from http://www.softwaretestinghelp.com/10-tips-you-should-read-before-automating-your-testing-work/ :manwink: Automate your testing work when your GUI is almost frozen but you have lot of frequently functional changes. Writting automation test when the UI is not stable is not a good idea. You will be totally unaware of the control properties which you can use in automation script. We have faced a similar situtation . We use keep lag of 1 sprint to complete our automation work. Ex : Sprint 1 : Dev creates new UI part & new functionality Tester prepares test scenarios to be automated Sprint 2: Dev works on new task Tester automates what has been developed my dev in previous sprint. I hope this has been of some help. Re: Moving between different tabs in RibbonStrip Hi, I am assuming that you have mapped the ribbon. Can you please try below code. Sub Test1 Dim myControl Set myControl = Aliases.MyApp.MyAppDocument.MyAppRibbon Call myControl.Edit.Click() Call myControl.Data.Click() End Sub Here myControl is the declared working as a ribbon control and "Edit" and "Data" are the tab names. Please let us know , if this code does not work. Re: Debug ModeHi Dmitri, Please press Ctrl+F5 or F5 key to run the project. The execution will pause once it reaches the breakpoint. Re: QT Testing Modules I am sorry , I am unaware of QT. Are you talking about Qt http://qt.digia.com/ http://en.wikipedia.org/wiki/Qt_(software) Can you please share some more information about the same ?