Skip to main content

id: running-groovy-script-in-katalon title: How to Run Groovy Script In Katalon With LambdaTest Selenium Grid? hide_title: true sidebar_label: Running Groovy Script In Katalon With LambdaTest Selenium Grid description: Run your Groovy script in Katalon with LambdaTest Selenium Grid. Perform automated cross browser testing with LambdaTest to ensure your development code renders seamlessly through an online Selenium grid providing 3000+ real browsers running through machines. keywords: - Katalon Groovy Script - Running Groovy Script - Groovy Script In Katalon - Groovy Test Automation Script - Groovy Automation - Groovy Automation Testing - Execute Groovy Script - Groovy Execute Script - Execute Groovy Script Online - Katalon using Groovy - Groovy Execute - Run Groovy Online - Groovy Test Online

url: https://www.lambdatest.com/support/docs/running-groovy-script-in-katalon-with-lambdatest-selenium-grid/ site_name: LambdaTest slug: running-groovy-script-in-katalon-with-lambdatest-selenium-grid/

Running Groovy Script In Katalon With LambdaTest Selenium Grid


As you perform testing with Katalon Studio, you can write or edit test automation scripts in the Script mode using Groovy programming language. This tutorial will help you run your Groovy script in Katalon with LambdaTest Selenium Grid.

Step 1: Open your Katalon Studio instance & go to Tests Explorer from the left side-bar.

Step 2: Right-click on the Test Listener folder & click on the new listener.

Step 3: Name the new listener & paste the below code in the new listener.

import static com.kms.katalon.core.checkpoint.CheckpointFactory.findCheckpoint
import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase
import static com.kms.katalon.core.testdata.TestDataFactory.findTestData
import static com.kms.katalon.core.testobject.ObjectRepository.findTestObject

import com.kms.katalon.core.checkpoint.Checkpoint as Checkpoint
import com.kms.katalon.core.model.FailureHandling as FailureHandling
import com.kms.katalon.core.testcase.TestCase as TestCase
import com.kms.katalon.core.testdata.TestData as TestData
import com.kms.katalon.core.testobject.TestObject as TestObject

import com.kms.katalon.core.webservice.keyword.WSBuiltInKeywords as WS
import com.kms.katalon.core.webui.keyword.WebUiBuiltInKeywords as WebUI
import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as Mobile

import com.kms.katalon.core.annotation.BeforeTestCase
import com.kms.katalon.core.annotation.BeforeTestSuite
import com.kms.katalon.core.annotation.TearDown
import com.kms.katalon.core.annotation.AfterTestCase
import com.kms.katalon.core.annotation.AfterTestSuite
import com.kms.katalon.core.context.TestCaseContext
import com.kms.katalon.core.context.TestSuiteContext

import com.kms.katalon.core.webui.driver.ExistingRemoteWebDriver

import com.kms.katalon.core.configuration.RunConfiguration

class LambdaListener {

TestSuiteContext suiteContext;

/**
* Executes before every test case starts.
* @param testCaseContext related information of the executed test case.
*/
@BeforeTestCase
def sampleBeforeTestCase(TestCaseContext testCaseContext) {


//To set the test name at LambdaTest.
RunConfiguration.setDriverPreferencesProperty("Remote", "name", testCaseContext.getTestCaseId());
if (suiteContext != null){
RunConfiguration.setDriverPreferencesProperty("Remote","build", suiteContext.getTestSuiteId());
}
println testCaseContext.getTestCaseId();
println RunConfiguration.getDriverPreferencesProperties();
}
/**
* Executes after every test case ends.
* @param testCaseContext related information of the executed test case.
*/
@com.kms.katalon.core.annotation.TearDown
@AfterTestCase
def sampleAfterTestCase(TestCaseContext testCaseContext) {
//To set the status of test at LambdaTest.
String result="failed";
if(testCaseContext.getTestCaseStatus().equalsIgnoreCase("PASSED")){
result="passed"
}
try{
WebUI.executeJavaScript("lambda-status="+result,null)
}catch (Exception e)
{
println e.toString()
}
finally {
WebUI.closeBrowser()
}
println testCaseContext.getTestCaseId()
println testCaseContext.getTestCaseStatus()
}

/**
* Executes before every test suite starts.
* @param testSuiteContext: related information of the executed test suite.
*/
@BeforeTestSuite
def sampleBeforeTestSuite(TestSuiteContext testSuiteContext) {
suiteContext=testSuiteContext
//To Set the build Name at LambdaTest.
RunConfiguration.setDriverPreferencesProperty("Remote","build", suiteContext.getTestSuiteId());
println testSuiteContext.getTestSuiteId()
}

/**
* Executes after every test suite ends.
* @param testSuiteContext: related information of the executed test suite.
*/
@AfterTestSuite
def sampleAfterTestSuite(TestSuiteContext testSuiteContext) {
println testSuiteContext.getTestSuiteId()
}
}

That is all. Now, you can effortlessly run Groovy Scripts in Katalon for triggering your tests over LambdaTest cloud-based cross browser testing platform. Happy testing! 🙂

Test across 3000+ combinations of browsers, real devices & OS.

Book Demo

Help and Support

Related Articles