InterviewSolution
Saved Bookmarks
| 1. |
What is logical name of the object? |
|
Answer» In QTP, logical name is a name that uniquely identify object with respect of other objects of the application while creating an object in the repository. QTP uses this object name to map the object presented in script with its corresponding description in the object repository by using this code− Browser("Browser").Page("Tutorialspoint"). Here, Tutorialspoint is the logical name of the object. |
|