ContributionsMost RecentMost LikesSolutionsRe: How to run more than 1 test suite via maven... harry Had to apply hack. I am assuming you are passing names of test suites/cases to run to testRunner or maven command. In Before Project Run Event Handler, capture test suite/case names. Iterate full project and disable every test suite/case dynamically which does not match your input. Let me know if you got the idea. Re: How to run more than 1 test suite via maven... nmrao Any suggestion here to run selective test case or test suite vs running full project ? Re: Can't use com.eviware objects from inside groovy JAR file? whats the solution of this issue ? Above link for duplicate post is not working Re: Event handler is not triggered when running a REST test step from a Groovy step. Problem Statement above is my question where TestAfter Step handler does not run when i am running step via groovy Re: Event handler is not triggered when running a REST test step from a Groovy step. New2API nmrao I ran into similar problem today, any help Original Problem in this post is solved in latest versions of ready api but still there is 1 place from where event handler is not running, see problem statement below. Problem Statement : Create 1 event handler of type TestRunListner.afterStep in which i am doing something. In my project there is a groovy test step which run another rest test step named as "API" via below code which does not trigger event handler. Does Not Work def runner = testRunner.testCase.testSuite.testCases['TS1TC1'].getTestStepByName("API") runner.run(testRunner,context) Works If i have groovy script like below, event handler gets triggered. testRunner.gotoStepByName("API") //OR testRunner.runTestStepByName("API") Re: How to call groovy lib classes from event handler? Hi, 1. Were you able to access testrunner / context / log etc in event handler via script library ? 2. Can you share DB publishing groovy used as event handler ? Re: How to get reporting at test step level instead of test case level what surefire currently provides Its possible to get step level data/result/request during runtime only. So i had to use event handler of type "TestRunListener.afterStep". This event handler runs after every step and collect the data and use it basis my need. Save the data in project variable in json format or something and after project run completes it processes it at once or in batches. Re: How to run more than 1 test suite via maven... Yes my test are independent and my company 100s of APIs projects, each project is 1 build in POM on which i run test goal of maven to run my project. In same build block i wanted to have flexibility if full project should run or selected test suites. Thanks for your prompt replies though. Re: How to run more than 1 test suite via maven... Yeah of course removing testSuite property and running multiple builds will run my multiple test suites. My project has 10 test suites and user can run more than 1 test suite at a time, not necessarily he/she wants to run all 10 test suites. Leaving testSuite property empty will run full project. How to run more than 1 test suite via maven... clean test -Dsoapui.test-suite=My Test Suite I run my project by above command and test suite is set in configuration block in pom.xml <testSuite>My Test Suite</testSuite> By passing comma separated values to test suite it runs only last test suite mentioned in that string.