ArpitaA / rtCamp-QA

rtCamp QA assignment
1 stars 0 forks source link

Provide complete project #2

Open nitun opened 9 years ago

nitun commented 9 years ago

You haven't provided all the required files. Please provide the complete project along with jar files/libraries.

ArpitaA commented 9 years ago

I have added required jar files.

nitun commented 9 years ago

Please provide all the other files whatever required to cross check your test cases. The complete project which you done during testing.

ArpitaA commented 9 years ago

Have added all files.Please review again.

nitun commented 9 years ago

@ArpitaA

These are some points found again:

  1. Still using hard-coded values. Can ignore for username and password,but driver.get("http://demo.rtcamp.com/rtmedia/members/test-sel/media/");//link for media page this can't be
  2. Only two jar files added, it redirect more files.
  3. Register - when I am applying captcha still saying verification code was not entered by user.
  4. Never closed window after text case completed. You should use driver.close() for this.
  5. Not used any reporting tool to generate reports for all the test cases which you have tested/created here. Can use reporting tools for display the actual result like TestNG... This tools will generate report in HTML format. It will user friendly. It will show which test case passed or failed.
  6. Wrong logic for media uploaded or not. Proper check not done. Check whether other media files are allowed or not. If .exe file, mp3, mp4, pdf.
  7. Used the hardcoded link for uploading media and that will be user specific always , will not work for other users
ArpitaA commented 9 years ago

1.Removed hard-coded link - http://demo.rtcamp.com/rtmedia/members/test-sel/media/ 2.Added necessary library files. 3.For issue-"Register - when I am applying captcha still saying verification code was not entered by user"- recaptcha_response_field is not responsive,it doesn't capture user entered values in page source.(Working on it)

  1. Have used driver.close() in all test scripts. 5.Used TestNG to generate reports. 6.Changed logic to check media uploaded. 7.Will add logic to check other media upload.