InterviewSolution
| 1. |
What do you mean by Tosca Query Language? |
|
Answer» The Tosca Query Language (TQL) is a POWERFUL way to search within your project. The tool gives you the ability to perform search QUERIES on your project through objects, object relations, and object properties to find/search anything you need. Simply type your query into a language the computer understands and the system will do the rest. It gives you the ability to take control of a project at any time. In its most basic form, this is similar to SQL, which enables us to search based on conditions. Example: Suppose the diagram below represents our CURRENT situation, in which we want to search for all TestCases with the name DATA Source Excel in the TestCases folder. Solution: =>SUBPARTS:TestCase[Name=="Data Source Excel"] |
|