Mr_BroFrequent ContributorJoined 7 years ago88 Posts61 LikesLikes received12 SolutionsView All Badges
ContributionsMost RecentMost LikesSolutionsRe: Pulling in Dynamic Links from a web page Hi DSmachineWorld, If you are trying to achieve in web applications the other approach would be to make use of FindElements Method please refer the below code snippet for your reference function FindElements_Example() { var browser = Sys.Browser(); var page = browser.Page("*services.smartbear.com/samples/TestComplete*/smartstore*"); var links = page.FindElements("//body//a"); if (links.length > 0) { for (var i = 0; i < links.length; i++) { /* Write your logic here to click each link and verify the page is valid or not for our example we can print the innertext property */ Log.Message(links[i].innerText); } } else { Log.Message("visited all the link."); } } Re: Multiple execution of a test plan with different values from an Excel table HI Chris2024, the other way to achieve it is as below: Create a script (Drive) which drives your execution and add only this in your execution and internally you can handle to read your excel using ADODB for excel. loop through the record set object which holds the value of your user (user 1, user 2, _, , user n) call the methods or the functions written in your script Re: Dynamic Object HI SvetaG you can make use of an option called - Conditional Mapping technique which will solve your requirement, Please find the reference link - Name Mapping - Conditional Mapping Please let me know if this was helpful. Re: How to import external node modules in TestComplete for example, if can we consider the simplest "moment" package, however if we can try to import this the same logic works with other modules also, so just wanted to check how to import the external packages. How to import external node modules in TestComplete Hello Togeather, currently I am using JavaScript language in my project, and I'm currently trying to import external node packages in the same project, could you please guide me how to achieve it in JavaScript project. waiting for your valuable response. Re: how to load driver jar file to connect to database Shashavali , the administrator has restricted access to any sub folder under C: drive. is it possible to load the driver from any given file location?. Re: how to load driver jar file to connect to database Shashavali , i have tried this approach and im encountring the below error , java.io.IOException: Error, could not add URL to classloader jdk.internal.loader.ClassLoaders$PlatformClassLoader error how to load driver jar file to connect to database Hello All, request you to please suggest how to load an external driver .jar to connectc to database, as i have have required access to add any files or modify any existing files from the c:\ drive (were the SoapUI is installed) thanks in advance fetching the logged in username using groovy Hello Team, can anyone help me how can i fetch the user profile details using groovy in soap ui, i have to fetch the user profile name in groovy. thanks in advance. request you to please help me if you have already worked on such requirments. Thanks and Regards, Sathish Kumar K GitHub Copilot integration with TestComplete Hi team, in the current world, the programmers are using Stack overflow to find code snippets for simple problems, and git hub has a feature called Copilot, which we can use to suggest the code sample which works like a suggestion dropdown when we use some testcomplete methods, it would be great if we create any kind of plugin or some functionality which can do the above mechanism to make our work easier. Thanks and Regards, Sathish Kumar K