InterviewSolution
Saved Bookmarks
| 1. |
How do you close the second browser that has been opened using UFT? |
|
Answer» The "creation time" feature can be used to DETERMINE which BROWSER INSTANCE was opened after another. This is nothing more than a counter for each browser instance that is launched. It starts at 0 for the FIRST one and goes up from there. You can use the following code to close the second browser that has been opened: Browser("creationtime:=1").Close |
|