You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For end-to-end examples in the Karate demos, look at the files in [this folder](karate-demo/src/test/java/ssl).
2421
2421
2422
+
There is also a minimal Spring Boot based example here: [Karate and SSL](https://github.com/karatelabs/karate-examples/blob/main/ssl/README.md)
2423
+
2422
2424
### NTLM Authentication
2423
2425
Karate provides support for NTLM authentication using the Apache NTLMEngine implementation.
2424
2426
@@ -4271,6 +4273,7 @@ Karate also has built-in support for [websocket](http://www.websocket.org) that
4271
4273
*`subProtocol` - in case the server expects it
4272
4274
*`headers` - another JSON of key-value pairs
4273
4275
*`maxPayloadSize` - this defaults to 4194304 (bytes, around 4 MB)
4276
+
*`useFrameAggregation` - (Boolean) defaults to `false`. Can be enabled to aggregate multiple frames if the server sends multiple frames for a single payload.
4274
4277
4275
4278
These will init a websocket client for the given `url` and optional `subProtocol`. You can call `send()` on the returned object to send a message.
4276
4279
@@ -4330,6 +4333,7 @@ For completeness, the "built-in" tags are the following:
4330
4333
Tag | Description
4331
4334
--- | -----------
4332
4335
`@ignore` | Any `Scenario` with (or that has inherited) this tag will be skipped at run-time. This does not apply to anything that is "called" though
4336
+
`@fail` | Any `Scenario` with (or that has inherited) this tag will be expected to fail. This can be used if e.g. tests are written before fixes
4333
4337
`@parallel` | See [`@parallel=false`](#parallelfalse)
0 commit comments