Looking for a way to compare two files (one in Word and one in PDF format) to ensure they contain the same information. The Word document will serve as a template for how the PDF should be generated. See below for examples of each:
Word doc:
<firstname>,<LastName>
<ID>,<organization>
<salary>,<place>
Dear <firstname>,
you are working in the department of <organization> and we are really honored to have you here. Expecting many more successful years of service from you.
Thanks,
Actual PDF:
John, Kennedy
234,google
USD1245,CA
Dear John,
you are working in the department of google and we are really honored to have you here. Expecting many more successful years of service from you.
Thanks,
Does anyone have a suggestion for a comparison logic to verify that both the static and dynamic content are being generated correctly? We are currently using TestComplete with JavaScript for automation.