Pavel Bairov
Pavel Bairov
https://github.com/gatling/gatling/issues/4305 ``` "#{randomNumber(10)}" "#{randomNumber(5,10)}" "#{randomNumber(5, max)}" "#{randomNumber(5, maxL)}" "#{randomAlphanum(5)}" "${UUID()}" ```
https://github.com/gatling/gatling/issues/4306 *** Example Code: ```scala val wsCheckCompleted = ws .checkTextMessage("Ws check [completed]") .matching(regex("COMPLETED")) val wsSendText = ws("Ws send text") .sendText("""{"auth":{"token":"blabla"}}""") .await(30 seconds)(wsCheckCompleted) ``` Logs: ``` 14:01:14.607 [DEBUG] i.g.h.a.w.WsLogger$ - Request...
**Problem**: Currently, WebSocket logs don't contain context information (Session attributes, etc). No ability also to separate logs on failed requests like in HTTP module when we can set up different...
### FAQ - [X] Yes, my issue is not about [variability](https://github.com/GoogleChrome/lighthouse/blob/main/docs/variability.md) or [throttling](https://github.com/GoogleChrome/lighthouse/blob/main/docs/throttling.md). - [X] Yes, my issue is not about a specific accessibility audit (file with [axe-core](https://github.com/dequelabs/axe-core) instead). ###...
### Feature/improvement Hello there! According to the documentation, to set the expiration date for S3, we should set a timestamp **after how long** files will be deleted, but in fact,...
**Version**: 3.10.2 **Code**: ```scala val protocol: Protocol = http .baseUrl("https://httpbin.org") .sign { (request, session) => request.getHeaders.add("qwerty", "3.10.2") request } val request = http("get request") .get("/get") ``` *** There isn't the...
Hey! I suggest adding a `maxUsers` method (similar to the `maxDuration`) for the interrupt test. It can be useful for the closed model when you aim to pass only a...
Hey there!) There's some change that, imho, is inconsistent with the underlying logic. In the past, WebSocket had its own logger, making it convenient and easy to filter and separate...
Hello. I have a suggestion to add support to check the response time for the WebSocket. Currently, there's only timeout logic which provides no details upon failure. I believe that...