How to do text verification point in silktest for a
specific content.Suppose in the text editor, i have typed
some "aaaa,bbbb,cccc,dddd" in different lines. now i want
to capture only aaaa of first line from the text editor.
How can i do it.Can any one help me.
Answers were Sorted based on User's Feedback
Answer / jinsha
store the string in a text variable as
string a="aaaa,bbbb,cccc,dddd"
print (getfield("/",a,1,4)
this captures only aaaa
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / nikhil
store the text in a string variable.
say STRING sContent = "aaaa,bbbb,cccc,dddd"
Now use getfield(sContent,',',1) which captures only aaaa.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / samar
use this sample code ..
pass the string as parameter in Check_PDF method.
Parameter whichever string you want to
retrive/display/verification.
Check_Pdf("aaaa")
[-] Check_PDF(LIST OF STRING lspdfcheckpoint)
[ ] WaitForControl(Gold_Orders.ViewOrderForm)
[ ] // main window - Gold_orders
[ ] // OrderForm - 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")
[ ] Print("String Verification : "+Items)
[-] else
[ ] LogError ("FAIL:" +Items + "Item not found on the
OrderForm")
[ ] //Close SRF
[ ] OrderForm.TypeKeys("<Alt-F4>")
| Is This Answer Correct ? | 2 Yes | 1 No |
What is the advantage of using do except instead of other error logging functions?
What are the types of text lines in a testplan file?
What is the dom browser extension?
what .inc file consists in silk?
What is silktest project?
can you test an application in silk test that is running on another system?
How to open an existing silktest project?
How can we Read the data from data grid in Silk Test?
What statement in for test is used to transfer control of the script out of the innermost nested for, for each, while switch or selected statement?
What is the syntax of ui object identifier used by dom extension?
How to run all test cases in a testplan?
what is the use of exception handling in Silk Test and how to use the commands?