statuschecker icon indicating copy to clipboard operation
statuschecker copied to clipboard

Tool for validating that executed Robot Framework test cases have expected statuses and log messages.

Results 7 statuschecker issues
Sort by recently updated
recently updated
newest added

They produce errors like ``` Expected message to be "Keyword 'BuiltIn.Log' (index 2) does not have message 2." but it was "Keyword 'Log' (index 2) does not have message 2."....

The current implementation of the `REGEX:` match automatically prepend with `^` and postpend `$` matching the entire message. This default is good because it reads without needing these symbols. But...

Small change to correct handling of SKIP in RSC. Original PR from me did not make tests that have SKIP in the doc pass when they indeed SKIP as expected.

Hello, I would like robotstatuschecker to show some console logging with regard to passed and failed test cases. When running tests with Robot Framework I usually only look at the...

Hello, I discovered a nice hidden feature in statuschecker. Since the class StatusChecker is implemented as a ResultVisitor, you can use it as follows: robot --prerebotmodifier robotstatuschecker.StatusChecker or: rebot --prerebotmodifier...

I'm trying to update the test case [Page Should Contain](https://github.com/robotframework/SeleniumLibrary/blob/bc6a4af75081cd2f59a690af495d213f2d7cbc39/atest/acceptance/keywords/content_assertions.robot#L51) with ``` Page Should Contain [Documentation] Default log level does not have html output. ... LOG 2:7 Current page contains...

Small fix to allow different expected statuses for the test case outcome and individual `LOG` messages, which can be different when: - Running keywords such as `Run Keyword And Expect...