I have a form that uploads a file.Form uses FormFile object for uploading of the file.Uploading works just fine.Problem i am having is while wrtitng automated test. I the test i am seting a form using setActionForm.Now as i mentioned in this form i want to set a FormFile object and that's where i am struggling HolidayFeedUploadForm holidayFeedForm = new HolidayFeedUploadForm(); DiskFileItem fileItem = new DiskFileItem("uploadFile","application/vnd.ms-excel,text/xml",true, "myfileName",1200, null); CommonsMultipartRequestHandler mp = new CommonsMultipartRequestHandler(); CommonsMultipartRequestHandler.CommonsFormFile dd = mp.new CommonsFormFile(fileItem); setActionForm(holidayFeedForm);
It compalins about visiblity of CommonsMultipartRequestHandler. CommonsFormFile.I know that CommonsFormFile is an inner class and package access is private.All i want to do is create a new FormFile object and set it on the form.How would i achieve that? Regards Medha