top of page
  • Ravi Beck

10 coding watchouts for an Automation Developer - Part 3

Here's the continuation to the previous blog- 5. Testing Framework

A framework usually takes away the grunt work out of running the tests, generating reports. The most common frameworks used in automation is JUnit & TestNG. Moreover you can design your own framework.TestNG is a preferred framework for testers. It is inherited from JUnit and NUnit.

It allows you to group test cases easily which is not possible in JUnit.Using a framework like TestNG gives you to flexibility to define execution order, dependency on other cases/skipped if one or more cases fail, etc. It also has automatically to generate test reports in both HTML and XML formats.


6. Retrieving test data from external files

Instead of hard coding, it will be better to keep test data is kept in external files and read it through your script.For example : to compare data, use for data-driven testing or it can even be used for Assertion/Validation purposes.Keeping test data in external files is always a good approach. It gives the feasibility to make changes in just one file whenever test data changes rather than tampering your entire code.


7. Modularize your code

Always follow “Divide and conquer”.Smaller the size of code component, easier it is to maintain.It will provide more reusability and separation of concerns. It becomes even more beneficial when working in teams for others to understand the code easily.


By: Ravi Beck

6 views0 comments

Recent Posts

See All

10 coding watchouts for an Automation Developer - Part 4

Here's the continuation of previous blog 8. Assertions Testing is all about validation and verification. While it is easier to find the elements or trigger actions, automation is complete only when th

bottom of page