I have a simple Nancy module. I want to pass in query string (q-s) parameters to the handler. If I do not have any q-s params everything is fine. As soon as I add a param th
You don't pass in the query on the url, instead use the .Query method on the browser context
var result = browser.Get("/", with => { with.Query("key", "value"); });