externship-sag / RSATeam1

0 stars 1 forks source link

F2C15 - Under 'Certifications' #66

Open VINAMB opened 1 year ago

VINAMB commented 1 year ago

Description: If certification category is given in resume, list items under it. Leave blank if none. End criteria: Para break or next category header (To be revised as needed)

Acceptance criteria: Display certifications (comma separated) if given. Blank if none.

Image

Reference:

Image

teamSunshineUranus commented 1 year ago

It is not possible to read a whole paragraph, as the resumes are not in a standard format. Also, the text content of pdf/doc file type, do not have any paragraph specific tags. This requirement can be implemented as: Look for keyword "Certifications". If match found, read next 5 lines after the match and the output file can be populated with that content. However, always the displayed content may not as accurate and appropriate.

teamSunshineUranus commented 1 year ago

Submitted the code implementation. Fixed the bug reported by QA team: regex with '/n' failed to fetch the required data from resume files on windows system.