Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Summary

Table of Contents
excludeSummary

1) Document Status

This document is currently being drafted

...

The test bench usage is illustrated according to the process described below


Test case building process illustrationDescription

Image Modified

Step 1)

Selenium includes a recorder that captures the interaction between the user and the browser. The capture of the interaction is stored in the form of a Selenium script.

Step 2)

The translation of the Selenium script is translated into a JUnit Test Case to which it is necessary to make adjustments for the interpretation of the actions.

Step 3)

The Java Unit Test is suited for a generalized use in multiple language contexts.

Step 4)

The test bench encapsulates a set of features and properties that are necessary to parameterize the execution of test cases. This step aims to integrate the test case into these execution parameters.

Step 5)

Once integrated into the test bench, the test case can be triggered by the development in a singular way or in batch mode according to the needs of the moment.


...

3) Technical Notes