In my test I would like to be able to see statistics for each virtual user separately, so my scenario looks like this:
`
val scn: ScenarioBuilder = scenario("My scenario")
.feed(credentials) //contains username, password etc.
.group("User ${username}") {
//some actions here, some of them also grouped
}
`
When the report is generated, I see a group for each user as expected on the main page.
But when I click some group, the file is not found: Firefox can’t find the file at /group_someusername-4821f.html. Checked the folder with html report, and there is actually no such file.
If I expand topmost group on the report main page further and click some of its subgroups, subgroup details pages are opened as expected.
Does anybody know the reason for this and how can I avoid it?
I’ve never encountered such a problem with my other scenarios, but they all were rather grouped by request types than usernames.