-3

I am new to Robot Framework and writing the test cases in it. I have a test suite name "testSuiteTrial.robot" which have 50 test cases .When i am running the test suite , few test cases are getting failed.I don't want to run the full test suite again.So i am looking for an approach for running only the failed test cases from test suite.

Any help on that

Jafar Raza
  • 139
  • 1
  • 8

1 Answers1

2

Look to the documentation here, chapter "Selecting test cases"

There are options there:

  • By test suite and test case names
  • By tag names
  • Re-executing failed test cases

And maybe having 50 test cases in one suite is not a very good idea? In our team we have a limitation 10 cases for suite (except data-driven tests) cause of when there are more suites become very long and hard to maintain.

Community
  • 1
  • 1
Dmitry Ezhov
  • 315
  • 2
  • 3
  • 10