I'm following the example document on creating web scenario but hit a wall at the login step. For some reason it seems to simply not work, but I can't figure out why. All it says is:
Error: response code "422" did not match any of the required status codes "200"
I can't even figure out what code 422 is, seems to almost never be used, I've never seen it before. Any ideas what's failing?
username={user}&password={pass}&login=Sign in
Based on the login page form showing:
input type="text" name="username" id="username-pulldown" tabindex="1" class="form--text-field"
input type="password" name="password" id="password-pulldown" tabindex="1" class="form--text-field -password"
input type="submit" name="login" id="login-pulldown" value="Sign in" class="button -highlight" tabindex="1"
Error: response code "422" did not match any of the required status codes "200"
I can't even figure out what code 422 is, seems to almost never be used, I've never seen it before. Any ideas what's failing?
username={user}&password={pass}&login=Sign in
Based on the login page form showing:
input type="text" name="username" id="username-pulldown" tabindex="1" class="form--text-field"
input type="password" name="password" id="password-pulldown" tabindex="1" class="form--text-field -password"
input type="submit" name="login" id="login-pulldown" value="Sign in" class="button -highlight" tabindex="1"
Comment