0 votes
in Testing by
When will you automate a test?

1 Answer

0 votes
by

Automation is preferred in the following cases

  • Repetitive Tasks.
  • Regression Testing
  • Smoke and Sanity Tests.
  • Test with multiple data sets.

Testing is not recommended for one-off test cases. Usually, the decision on which test cases to automate is based on the ROI (Return on Investment). The more times the automated test is executed, the better the ROI.

...