Fabrice Reix

Results 185 comments of Fabrice Reix

I also quite prefer to have only one repeat to make it simpler. Choosing the following repeat ABABAB which seems the most common in programming. For example, in Python ```python...

for example, to run AAABBB synchronously ``` hurl --repeat 3 A hurl --repeat 3 B ```

camelCase names (such as `queryString`) came originally from the HAR format (http://www.softwareishard.com/blog/har-12-spec). It makes indeed sense to stick to only one format, I also prefer the `snake_case` one.

Hi @lambrospetrou, thanks for reporting the issue. I don't reproduce it yet on my local machine with your steps. We are going to try to reproduce it in our pipeline,...

I have added an integ test that combines `--test` and `--repeat` https://github.com/Orange-OpenSource/hurl/pull/3305 The bug is still not reproduced :-(

Hi @msterin, The support for JsonPath filter in general is quite limited for the time-being. There is now a [spec](https://ietf-wg-jsonpath.github.io/draft-ietf-jsonpath-base/draft-ietf-jsonpath-base.html) that we will try to implement.

Hi @azzamsa, It might not be a good time to touch hurlfmt. We plan to rewrite some parts to align its code with hurl. We will look at your bug...

This one is clearly not semantic ``` { "bar": true } ``` but I'm not sure when the string type `json` is specified. ```json { "bar": true } ``` Setting...

We could use the same output as [jd](https://github.com/josephburnett/jd)

Thanks @joshuaclayton for your issue. Automatic pagination is really an interesting/challenging use case. It would be nice if it could fit in a more general looping mechanism not specific to...