I am struggeling with Flurl.Http to verify the response text of a GetAsync() request.
My code:
var resp = await "https://.../version"
.GetAsync();
Assert.Equal(200, resp.StatusCode);
Assert.Equal("1.0.0.0", resp.WhatDoIHaveToDoHere?);
Someone here who knows how to do that?