In my application, I have a Telerik RadGrid that contains student information. I'm using Visual Studio 2017 to load test some major changes to our system. To do that, I need to emulate a number of teachers performing various tasks in the system, each using the RadGrid to select a different student.
I've tried recording a Web Test, but I don't see anywhere to inject the selected student's ID value into the POST event that correlates with the ItemCommand event of the RadGrid that fires when a user clicks a student name on the grid.
I do see that the _EVENTTARGET parameter =
ctl00$ContentPlaceHolder1$rgStudentList$ctl00$ctl04$btnLName
(which is the asp linkbutton in the last name field) but the _EVENTARGUMENTS parameter is empty.
I have searched the entire POST request and don't see anything like the commandarguments value I need.
Can anyone help me?