Forum Discussion
Firstly, the correct thing is the thing that make yourself more efficient, not the other.
Then the choice of structure could depend on which kind of tests you do.
As for me, we use TC for RPA and tests as functiunal acceptance, end-user scenarii, through single or multiple apps (heavy client, light client, web, mobile, mainframe, ...).
We do only script TC.
We have a commun repository for all common libraries (like system.js, services.js, database.js, cmd.js, ....) and all main software engines (like sap.js, inforM3.js, sageX3.js, axelor.js, oracleEBS.js, webcheck.js, ....) and all main integration engines (like jira.js, squash.js, testlink.js, redmine.js, ...).
All engines are closure-style object.
After, we have a repository of projects per customer. Each project has one or several test scenario.
For example, a customer in insurance, we have one project (name of the customer) and inside, several projects suites to test rates engine, end-user prints, claims and poilicy workflow, ..
Each project suite use libraries of the common repository and three files for the project suite itelsef; example for rate engine;
- rateEngine.js which manage the loop of tests cases read from Excel, its mainly call of customer app engine functions with data read from the excel
- rateEngine_context.js which manage start/end test session/case/step integration with ticketing system and test management software
- rateEngine_globals which contains some usefule globals
Inside TC we have only 3 test items;
- Initialization which call startTestSession inside rateEngine_context
- Excute which call playTest inside rateEngine, this one is called only if initialization has been successful
- Finalization which call endTestSession inside rateEngine_context
Starting a new customer or a new project suite is made easily because we have a console script that create all pathes and files wanted after answering some questions (name of customer, name of project, include webapps, include which engine, ...).
If customer use only apps we have already in our repositories, it's 75-90% direct reuse, the remaining part is to follow changes in business process of the customer.
If customer use new apps the console script build us the engine for all standard functions and we have to add business process functions only, so a 50% direct reuse at least.
- tristaanogre5 years agoEsteemed Contributor
I like to use a data/table driven model where the driver of what tests to run, the contents of the tests (individual steps and parameters), and the order in which they are executed are stored externally from the automation code itself. I like to use CSV files for that data because they are portable and easily editable by any user with any variety of tool.
The script code consists of "atomic" steps, each one a class in Javascript which has properties corresponding to the data needed to execute the step and a method for the actual execution. A test case is then constructed in code from the CSV data to be an array of instances of the steps. A test case is executed then simply by traversing the array and executing the objects' primary methods in the designated order. Rather than using Test Items to build the report and execution, there's a minimal number of test items:
1) Reads the data and builds the test cases from the CSV files
2) Traverses the arrays and executes the tests
3) Cleans up the automation and any finalization routines.
Reporting is built from log entries using AppendFolder/PopFolder etc., to build a report based upon log rather than on the built in TestComplete reports. Others have adapted this to also write out reports to CSV, XML, or other formats internally.
The pro that I've found for this method is that you can have a few people whose job it is to maintain the highly object oriented, modularized code. If the test case requires a minor change in work flow, rather than needing to redo a whole test case, you only need to modify code for the individual step/class. The more "atomic" the steps, the easier it is to maintain. Additionally, with sufficient documentation, ANYONE can build a set of test cases for execution without having to know anything about TestComplete or the code involved. They just populate a set of CSV data files and click a desktop icon to run the tests in TestExecute.
- BenoitB5 years agoCommunity Hero
We are doing same approach ;)
A strong and robust core functions, a minimal environmental management and a great place for PO and BA or others to build their own test cases through data driven method.
- sameerjade5 years agoFrequent Contributor
tristaanogre Thank you for sharing your thoughts and workflow!
>> If the test case requires a minor change in work flow, rather than needing to redo a whole test case, you only need to modify code for the individual step/class.
That is great, definitely makes test maintenance much easier and safe. I try to do something similar with my functions by making re-usable functions with user parameters that can be used in all scenarios. Makes the later part of making and updating tests much easier.
What do you mean by "atomic" steps though? Does that mean breaking the steps into even smaller steps which makes assembling part more flexible?
- BenoitB5 years agoCommunity Hero
atomic means that u can't slice in smaller action, more initial work because sometimes lot of primitives, lot of intellectual work to keep all in mind and here good source documentation is important, so lot of time before delivering starting to test .. but after you have just to call assemblies of these primitives and you can do everything very quickly
high learning curve but reusability max, even between different apps
its the way of building a framework
- sameerjade5 years agoFrequent Contributor
Thanks BenoitB for the detailed reply! That totally makes sense, whatever works best and efficient for one is the way to go for them.
Great that there is a significant direct reuse (50% or more) after the initial scripting. I guess that makes the work more efficient and cleaner! :smileyhappy:
Related Content
- 3 years ago
- 2 years ago
- 10 months ago
- 10 years ago
Recent Discussions
- 11 hours ago
- 7 days ago
- 10 days ago