The title of the window consists of date and time.What is
the regular expression to recognize the window as unique?
Answer / Himanshu Tewari
To create a unique regular expression that recognizes a window with a date and time in its title, you can use a combination of wildcard characters (`*`) and character classes (`[...]`). Here's an example:
```vbs
Set r = New RegExp
r.IgnoreCase = True
r.Pattern = "**-*** *:*:*:*"
```
In this example, the regular expression `**-*** *:*:*:*` can be adjusted to match the specific date and time format in your window title.
| Is This Answer Correct ? | 0 Yes | 0 No |
where does WR records the information about objects in AUT?
which TSl statement is used in winrunner to stop the Run
Explain the winrunner testing process?
What is the XML test cases creation?
How do you identify which files are loaded in the gui map?
can we write exception handlers (object,tsl,pop-up) programatically then how should we insert this in the script?
what is the advantage of INOUT parameter over OUT parameter?
How do you clear a gui map files?
What is the winrunner version now..?
If the object does not have a name then what will be the logical name?
Where are the expected results will be stored?
How you integrated your automated scripts from TestDirector?