Is it possible that the Selenium IDE will run the entire test suite, even if errors occur

We often use test kits to ensure that we start with a known working situation.

In this case, we want the entire test suite to run to check all pages. If some kind of failure, we still want other tests to run.

The test suite seems to stop the moment the error is detected in one of the tests.

Can it be configured to continue running and run all tests, regardless of the results?

+3
source share
1 answer
  • Make sure you use Verify and not Assert. Assert will stop your system.
  • Each test case restarts from a fixed point (e.g. base load url)
  • Set a wait time (how long you want the system to wait before moving on)
+1
source

Source: https://habr.com/ru/post/909494/


All Articles