Skip to content
Advertisement

How to access Karate config parameters in JUnit tests?

Is there a way to access the config parameters from karate-config.js within JUnit tests?

Example:

karate-config.js

JavaScript

MyTest.java

JavaScript

Advertisement

Answer

But why !?

There are multiple ways, but first – maybe you are over-engineering things and note that it is possible to read a *.properties file in Karate: properties.feature

You can also create a feature file with a single, empty Scenario – and call it from the Java API: https://github.com/intuit/karate#java-api

JavaScript

Which will give you the values of config in the returned Map.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement