I have a test in Jmeter that has a request with string field and accent in the string.
When i run that test with Jmeter it runs successfully.
When i run that test with Taurus Blazemeter it gives me [Bad Request]
I have been looking what’s wrong with the request few days and after all i got it.
Test just fails because one of the string fields of the request has an accent, it does not fail if i run it with Jmeter, but when i run it with bzt it always gives me [Bad Request], when i remove the accent from the string, it runs successfully.
Example:
{
"Foo" : "Bar" // Runs successfully
}
{
"Foo" : "Bár" // Bad Request
}
Is this a bug? is there any solution to this?