I test a Rest API with KarateDSL, which goes very well. But currently I'm trying to send request with authentication via client TLS certificates.
Curl looks like this:
curl -X POST https://<urlOfEndPoint> -d '{ "id":"First","status":"Active" }' --cert cert.crt:password --key cert.key --insecure
Is it some way, how to send this request from Karate? Or some workaround?
Thank you in advance