如何根据功能自动化pdf中的数据填充

时间:2015-05-18 10:59:03

标签: testing selenium-webdriver webdriver automated-tests testng

我的最终产品是PDF,数据根据我在应用程序中提供的数据填充在PDF中。是否有任何依据功能自动化PDF部分中的数据。

1 个答案:

答案 0 :(得分:1)

您可以先使用Ghostscript将pdf解析为文本。

gswin32c.exe -q -dNODISPLAY -dSAFER -dDELAYBIND -dWRITESYSTEMDICT -dSIMPLE -c save -f ps2ascii.ps "test.pdf" -c quit >"test.txt"

获得pdf文本后,您可以在测试中编写其他验证。还有其他替代的pdf到文本功能。

您可以阅读代码项目中的完整代码 - http://www.codeproject.com/Articles/12445/Converting-PDF-to-Text-in-C