Hi,
Can anybody please explain that how to see the download attachment response on console while doing get for download attachments???
Thanks
Hi,
Can anybody please explain that how to see the download attachment response on console while doing get for download attachments???
Thanks
Have you tried this:
http://gatling.io/docs/2.0.3/general/configuration.html?highlight=logback.xml
Ya john…I tried…But my context is I want to store that response in one variable with saveAs and I want to print it on console with session…Any thoughts??
Check out bodyString -
`
.exec(
http( description )
.get( url )
.check( bodyString.saveAs( “contents” ) )
)
.exec( session => {
println( “The request returned:\n” )
println( session( “contents” ).as[String] )
session
})
`
By the way, have you explored the quick reference? http://gatling.io/docs/2.0.3/cheat-sheet.html
Thanks john…