Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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



How to do text verification point in silktest for a specific content.Suppose in the text editor, i..

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

How to do text verification point in silktest for a specific content.Suppose in the text editor, i..

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

How to do text verification point in silktest for a specific content.Suppose in the text editor, i..

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

Post New Answer

More Silk Test Interview Questions

Imagine you have a string variable that holder a credit card (16digit). There are multiple ways of obtaining last four digits of this number programmatically on a run time. Name one; for practical purpose variables name is sCCnumber?

5 Answers   IBM,


What is the standard flow of execution of a test case?

0 Answers  


How dom browser extension identify a web application ui object?

0 Answers  


What is the dom browser extension?

0 Answers  


How to create group and sub group descriptions in a testplan?

0 Answers  


who is the head of the BMC

1 Answers   BMC,


What are the problems you faced while identifying an object in silk?

0 Answers  


In "Property" the user-defied property can have two functions only, define that?

1 Answers   IBM,


How can you read the contents of PDF using silktest?

2 Answers  


How to write the good frame work for application.

1 Answers  


What is a test frame?

0 Answers  


In how many ways we can perform datadriven test in silk test, throgh flatfiles can we perform?

3 Answers  


Categories