For FE test automation, the E2E frameworks are mostly based on TypeScript (or JavaScript). So better to remember a few tips.
Architecture
We can build test automation code in a reusable way minimizing the duplication. For this purpose, the most common functions are collected in helper classes. Those helper functions can be used in other classes in two ways.
Object Oriented Approach
OOP is kind of traditional way in which the class is instantiated by calling the constructor. In this way, some attributes can already be set and while calling the functions from the class, there is no need to pass the same arguments any more.
Functional Programming
In some cases, there are not too many functions in the class and instead of calling them after creating an instance, directly calling them is more convenient. Functional programming lets us export each function (or any other type module) individually.
Module Management
(See details in
article)
NodeJS Standard
CommonJS modules are the standard of NodeJS. A very simple example is as follows: