Advertisement
xosseh

Sample TestListener for Katalon

Oct 9th, 2024 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.41 KB | None | 0 0
  1. import com.kms.katalon.core.annotation.BeforeTestCase
  2. import com.kms.katalon.core.context.TestCaseContext
  3. import com.kms.katalon.core.cucumber.keyword.CucumberBuiltinKeywords as CucumberKW
  4.  
  5. class NewTestListener {
  6.     @BeforeTestCase
  7.     def beforeTestCase(TestCaseContext testCaseContext) {
  8.         CucumberKW.GLUE = ['stepDefinitions'] // change to the name of the package(s) with the test scripts
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement