How do u write a regular expression for date (dd/mm/yyyy)
field ?
Answers were Sorted based on User's Feedback
(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)\d\d
0 - selects '0' Literally
[1-9]- selects the range between 1 to 9
[012] - selects either 0 or 1 or 2
[0-9] - selects the range between 0 to 9
[- / .] - selects either - or / or .
(19/20) - selects either 19 or 20 literally
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ghazal
([0][1-9]|[1-2][1-9]|[3][0-1])-([0][1-9]|[1][0-2])-d{2}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / a
(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)
[0-9]{2}
| Is This Answer Correct ? | 3 Yes | 6 No |
How many ways we can parameterize data in quicktest professional (qtp)?
How to create an Action Template?
how to get childobject from .net application. i tried but its showing child object count zero. but window has child objects.the following script i written... pls help me how to get. set parent=SwfWindow("winodw name") CheckObjectDescription parent, SwfButton Public Function CheckObjectDescription(parent, oDesc) Set oDesc = Description.Create() oDesc("micClass:").Value ="Swfbutton" Set children = parent.ChildObjects(oDesc) cntObj=children.count msgbox(cntObj) End function
Hi, i have a string like "INDIA". I need to display this string vertically in Msgbox?
Can abody explain me Send keys concept
what kind of frame work you used in your last project?
Which company is better amdocs or techm ???
If object is not recognized by qtp but the object is standard object what is your approach?
Explain how qtp identifies object?
Hi, OUR PROJECT NAME IS: HOSPITAL CONTROL SYSTEM. IS IT COMES UNDER WHICH DOMAIN(HEALTH CARE OR HEALTH INSURANCE)
I'm facing this problem while automating my application..its a web based apps.. In my application there are few webtables are displaying in the page.In the different cells there are links and action buttons.Problem is there is link in different web tables corresponding to one name.Hence the properties of the objects(say a link) are same except the x,y co ordinate of the object.So my script is not able to distinguish between the two links present in different cells of web tables with same name.Kindly help on this..
how do close the task manager through QTP?