Current Run Configuration Value required

How can I get the current run configuration, I have custom desired capabilities and I want to get the ‘name’ of the currently running capability, In the log, there is ‘Current run configuration: chrome_88’ but how can I extract it?

INFO com.kms.katalon.core.util.KeywordUtil - [SAUCELABS] Current run configuration: chrome_88Untitled

I have extracted the desired value from ‘getExecutionProperties()’

Map m= RunConfiguration.getExecutionProperties()
m.each{ key, value → println " ${key}:${value}" }
// it will print map and after that follow the flow to get to your key or value

//example:
String prop = m.get(“key1”).get(“key2”).get(“key3”).get(“key4”)
println prop