Jean-Christophe Amiel

Results 360 comments of Jean-Christophe Amiel

Hi @meixger Do I understand correctly your use case if I emulate it by injecting a variable: ```shell $ value1=`cat file.txt` $ hurl --variable value1="$value1" form.hurl ``` with form.hurl being:...

Yes exactly, we have "functions" today , we can imagine having a function `getFile` that returns the content of a file. Some things to not forget (for the implementation) -...

Hi @infogulch I think cou can use one line string and multi line string even if they're not body ``` POST https://example.org/helloworld `Hello world!` ``` You can try, it may...

Thanks @infogulch I was pretty sure this could work. I think we'll implement support for single and triple backticks.

Hi @infogulch on master you can use single backtick string like this: ```hurl GET http://foo.com HTTP 200 [Asserts] xpath "string(//title)" == `Bob says: "Hi"` ``` Regards,

I agree, a simple way of getting captured variable is a good enhancement. I wonder if, for this use case, we could reuse/extend `--write-out` option from curl (see for instance...

Hi @loxal > makes your tool a burden in every CI pipeline and in scripting. If this is a burden, I've hard time understanding why you're using it. There are...

Ok noted we'll see what we can do to improve your use case with TeamCity CI.

Work in progress, hiding secrets will be available in 6.1.0

Hi, secrets are merged on `master` and will be available on 6.1.0: - via command line with a `--secret` option: `hurl --secret token=1234 --test *.hurl` - via `redact` keyword for...