Possible to add comments within convo files?

I’d like to be able to add a comment in convo files to explain what a particular step of the test is doing, especially for example where the convo step is not easily human readable, such as:

#bot
JSON_PATH $.output.parameters.OUTPUT_NODE_IDS|83143cc4-1171-428c-a8c1-cc9125dace9b
// offer handover to agent

Is there a syntax to enter comments which are not processed at runtime?

Thanks!

There currently is no way of doing this. As this is a reasonable requirement I added it to our backlog.

What you can do: the first line in a convo file is the name of the test case. Everything following up until the first line starting with # is not processed and can be used for file-wide comments.

1 Like

Thanks, @Florian - much appreciated!