Applied Editing Basics

Each application is composed of several processes, and each process is composed of several steps.


Process concept: manage multiple steps, control the execution interval between different processes, the execution times of each process, and the jump of the process after the step returns success or failure; generally, the steps of the same operation are put into one process;For example, when logging in to a website, the three steps of entering the account number and password and clicking the login button belong to the same operation and can be added to a process, which can be named: login to the website account

29.jpg


Important: Whether the process is executed successfully or not is related to the success of all the steps in the process. Only when all the steps are executed successfully, the whole process is executed successfully. Otherwise, the process execution fails!


The concept of step: the step is the realization of the specific function of the application, and the application function of TM2AS is composed of steps with actual operation.For example, when logging in to a website, inputting the account password and clicking the login button consist of three steps: inputting the account and password belong to the text filling operation, and clicking the login button belongs to the element clicking operation.