How can you read the contents of PDF using silktest?
Answers were Sorted based on User's Feedback
Answer / guest
Use this method to parse - notepad and Pdf.
[-] Check_PDF(LIST OF STRING lspdfcheckpoint)
[ ] WaitForControl(Gold_Orders.ViewOrderForm)
[ ] // main window - Gold_orders
[ ] // ViewOrderForm - Pdf form
[ ] Gold_Orders.ViewOrderForm.Click()
[ ]
[-] if (OrderForm.Exists())
[ ] WaitForControl(OrderForm)
[ ]
[ ] STRING Items
[ ]
[ ] Clipboard.SetText({""})
[ ] OrderForm.TypeKeys("<Ctrl-a><Ctrl-Insert>")
[ ] LIST OF STRING OrderForm_Order = Clipboard.GetText()
[ ] STRING Line
[ ] BOOLEAN Found = FALSE
[-] for each Line in OrderForm_Order
[-] for each Items in lspdfcheckpoint
[ ]
[-] if MatchStr("*" +Items + "*", Line)
[ ] Found = TRUE
[-] if (Found)
[ ] Print ("PASS:" +Items + "Item found on the OrderForm")
[-] else
[ ] LogError ("FAIL:" +Items + "Item not found on the
OrderForm")
[ ] // 31. Close SRF
[ ] OrderForm.TypeKeys("<Alt-F4>")
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / rockgora
I think, you should use additional application (Adobe
Reader 7.0 )and than from this application you can take
information about pdf file
| Is This Answer Correct ? | 3 Yes | 5 No |
In SilkTest we have a function Except Log which displays the path of the error occured in a Script.In QTP do we have any function like that?
Where are the testplan attributes stored?
can any one please tell me the full form of .g.t in silktest datadriven method
What are testplan attributes?
Can silktest run on mac?
Which tag in silk is the most reliable in a scenario where content and order of object change frequently?
How to record a test case?
How to assign attribute values to test cases?
What is the dom browser extension?
Need information on how the scripts (test cases) are written for any application in silktest.
How to select a group of test cases in a testplan to run?
What is custom object .what it contains. Difference between custom & standard objects.