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 |
where the object repository is located?how to choose the object repository as shared or action object repositories?
After coming to know that QTP could not identify non-standard objects, we set those non-standard objects as virtual objects using Virtual object wizard. But how can we identify that qtp could not identify non-standard objects?
What is the difference between check point and output value.
How many types of Test Plans are there...??
in which case & which method we can use "native" property of an object ?
Hi,will U Please Provide me details certification for QTP &QC and also please provide me the Material also. Send to mail:jjaanu2mail@gmail.com
How to extract the data in the below scenario and dump it in the excel? Link1 Link2 Link3 Link4 numberlink1 text text text numberlink2 text text text numberlink3 text text text numberlink4 text text text So, Here is my question? -- It is a matrix but is not a web table(QTP does not recognize it as a web table) -- Link1, link2 and link3 are links under which text is available -- numberlink1 to numberlink4 are again LINKS -- All the others displayed are text only I want to extract the data in the above scenario and dump it into an excel in the same scenario as it is displayed above. Kindly help.. Thank you
How is recording done when a application is over lapping the QTP application it gives a message object not recorded
what is the difference between development and testing
how to run the script If QTP tool not identify object in web page
How to call the userdefined functions to script? If i am stored 'add()' function in Library functions folder. i want to cal that function in my script.
Give me brief idea about QTP automation object model?