I have to check the performance of Excel File upload in my application. The application is developed in .Net.
When the file is uploaded it is being converted into json format at UI level and then the data is getting uploaded into the application.
So when the scenario is recorded the content in the Excel file is showing in body. The file name is not showing anywhere in the log as the content is converted into Json format at UI level. I have tried by adding multipart/form data and file path but no success. I also tried the captured the requests using Fiddler but the same requests are recorded.
When discussed with dev team they said they have written a code in angular js /java script and converting the data in the file into json format and then saving it into the application.
There is no sign of uploaded file name in the log.
Can anyone advice me how to solve the issue.