--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
Ugh
What a nice solution, have remember that.
-Taty
On 6.10.2014 20:08, Bryan Oakley wrote:
No, once a suite has started, all test cases will be run based on the command line arguments. You can't skip test cases at runtime.
What you can do instead is set up dependencies between tests which will cause a test to fail (or pass) immediately if some other test fails, without executing any additional keywords. I've explained how to do this in the following stackoverflow answer: http://stackoverflow.com/a/25079032/7432
On Mon, Oct 6, 2014 at 11:21 AM, <techi...@gmail.com> wrote:
Hello All,
I have a test suite with 4 test cases , is there anyway if 1_test_case failed to skip rest of the test cases ( 2 , 3, 4) in test suite.
1_test_case2_test_case
3_test_case
4_test_case
Appreciate your inputs.
thanks
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-users+unsub...@googlegroups.com.
| public interface RobotListenerInterface { | |
| public static final int ROBOT_LISTENER_API_VERSION = 2; | |
| void startSuite(String name, java.util.Map attributes); | |
| void endSuite(String name, java.util.Map attributes); | |
| void startTest(String name, java.util.Map attributes); | |
| void endTest(String name, java.util.Map attributes); | |
| void startKeyword(String name, java.util.Map attributes); | |
| void endKeyword(String name, java.util.Map attributes); | |
| void logMessage(java.util.Map message); | |
| void message(java.util.Map message); | |
| void outputFile(String path); | |
| void logFile(String path); | |
| void reportFile(String path); | |
| void summaryFile(String path); | |
| void debugFile(String path); | |
| void close() throws IOException; | |
| } |
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "robotframework-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to robotframework-u...@googlegroups.com.
To post to this group, send email to robotframe...@googlegroups.com.
Visit this group at http://groups.google.com/group/robotframework-users.
For more options, visit https://groups.google.com/d/optout.
-- Linux registered user #475536 Ubuntu registered user #28583
--