what is the syntax for regular expression in QTP?
how to create user defined functions in QTP?
Answers were Sorted based on User's Feedback
Answer / seethas
Uday is exactly correct.........
I m giving one example 4 regular exp.........
[1-9]--------->it accepts all 1 to 9 numbers......
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / uday
Regular expressions enable QuickTest to identify objects
and text strings with varying values.
You can use regular expressions when defining the
properties of an object, the methods of an argument, when
parameterizing a step, and when creating checkpoints with
varying values.
A regular expression is a string that specifies a complex
search phrase. By using special characters such as a period
(.), asterisk (*), caret (^), and brackets ([ ]), you
define the conditions of the search.
we can write the user defined in a notepad and save the
file as .vbs and we then associate that to Test-Settings-
Resources-Associate Library Files by clicking plus and
select the .vbs file. In the script we can call the
function with function name ()
| Is This Answer Correct ? | 10 Yes | 7 No |
Answer / ram
By using regular expression we can handle dynamic objects
in object repositiry.
When an object property will changing freaquently based on
input values that time we use regular expression.
we have nuber of regular expressions , But we are using 4
types of regular expressions * . ( )
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / naren
RE enables us to find objects and Text strings with varying
values
Dim re As New RegExp
Dim ma As Match
re.Pattern = "[A-Z][0-9][0-9][0-9]" ' uppercase char
followed by 2 digits
re.IgnoreCase = False ' case sensitive search
re.Global = True ' find all the
occurrences
For Each ma In re.Execute(txtSource.Text)
Msgbox "Found '" & ma.Value & "' at index " & ma.FirstIndex
Next
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / saravanaraja
Regular Expression is used only for the dynamically
changeable element like Time.
This is the Regular Expression for Time ("1[012]|[1-9]):[0-
5][0-9](am|pm")
| Is This Answer Correct ? | 2 Yes | 4 No |
I have 3 add buttons of same properties in my page but i want trigger one of them i required in my recovery scnario manager is qtp recognizes it to recovre d scnario if so how qtp recognizes it
How do you know the location Id of an object if you know its index id?
Hi,The question is write a script for the following scenario. scenario:in a job portal i entered QTP 3yrs testing then click search button.then it displays results like Test lead bangalore (here is a checkbox). Test lead hyderabad check box so on... question is if test lead position in bangalore then checkbox shld be enabled automatically..
4 Answers Thatavarti Technologies,
What is qtpro? What is a quick test professional?
How to retrieve the object properties at runtime without the usage of GetROProperty?
Hi, I have 50 test cases for automation, Based on which criteria we can decide for these test cases we have to use Descriptive programming and remaining for general coding? Thanks In Advance..Kavitha
What is driver script and driver script in qtp frame work????
Is it mandatory to know abt regular expression in descriptive programming
HI, pls help me on this, iam not able to capture getcelldata value in javatable... msgbox javawindow("").javatable("").getcelldata(3,3) but it diaplays empty...
Can anyone help.i need total excelsheet operations,shortcuts in testing environment from starting onwards....
Hi, Can anyone please tell me how to connect the QC with QTP using QTP script? Thanks in advance
I dont know how to configure non standard objects to standard objects in QTP9.2 can i have someone explain me in breify?