We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running basic test like this:
Get Google Create Session google ${sessionURL} ${resp} Get Request google / Should Be Equal As Strings ${resp.status_code} 200 Log ${resp.content}
Using HttpRequestLibrary remotely with jrobotremoteserver 4.0.1 I'm getting error: Jython runner: Resolving variable '${resp.status_code}' failed: AttributeError: 'unicode' object has no attribute 'status_code' Python 3 runner: Resolving variable '${resp.status_code}' failed: AttributeError: 'str' object has no attribute 'status_code'
Resolving variable '${resp.status_code}' failed: AttributeError: 'unicode' object has no attribute 'status_code'
Resolving variable '${resp.status_code}' failed: AttributeError: 'str' object has no attribute 'status_code'
Seems that there's some type conversion done incorrectly at the response handling.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running basic test like this:
Using HttpRequestLibrary remotely with jrobotremoteserver 4.0.1 I'm getting error:
Jython runner:
Resolving variable '${resp.status_code}' failed: AttributeError: 'unicode' object has no attribute 'status_code'
Python 3 runner:
Resolving variable '${resp.status_code}' failed: AttributeError: 'str' object has no attribute 'status_code'
Seems that there's some type conversion done incorrectly at the response handling.
The text was updated successfully, but these errors were encountered: