The expected URL change was not detected
I am running a load test against our public web application and tried different numbers of virtual users for load testing (2500 then 1000 then 500 then 250) and the error that keeps showing as follow:
The expected URL change was not detected.
as per documentations the error occurs if the expected URL was not opened during the test run.
Possible reasons:
- The server was not available.
- There is a bug in the tested application.
- A wrong URL was specified.
- You have an internal application, and you tried to play back your test while your proxy was disconnected.
- Poor server performance. Consider using a high-capacity serve
how can I identify the root cause of the issue ? and is it a serious error ?
Hi blackwj,
I'm afraid the OpenAPI Specification currently has no way to represent XML elements with attributes such as
<elem attr="value">Some text</elem>
Currently, attributes can only be defined for objects such as
<obj attr="value"> <elem>Some text</elem> </obj>
but not for simple <elem>text</elem> elements.
There's an open issue about this limitation in the OpenAPI Specification repository:
How to represent XML elements with attributes
OpenAPI Specification maintainers are considering an option to use alternative data modeling schemas (for example, XSD Schema), so your use case might be supported in a future version of OpenAPI.