## Methods that TBot can call in getTestInput().
For query and control the app under test and system under test from inside the TBot execution.
==path=API.projMan==
## Description
project management API group.
## Group Methods
1. **queryProjectUrl**, path=API.projMan.queryProjectUrl
* Description: query for the url of the current test project.
* Return Value: the starting url of the project if the app is a web application.
2. **queryEmailForThisApp**, path=API.projMan.queryEmailForThisApp
* Description: query for the email address associated with the app under test. You may need to create an account test data card for this email and this app.
* Return Value: the email address associated with the app under test declared in test data card.
3. **queryAppCacheDir**, path=API.projMan.queryAppCacheDir
* Description: query the directory path of user temporal data cache of the app under test.
* Return Value: the working directory path string of user data for app under test.
4. **queryIssueTrackersOfThisProject**, path=API.projMan.queryIssueTrackersOfThisProject
* Description: get the information of issue trackers of the current project.
* Return Value: always an empty list since the function is not supported now. We may support it if you post a request.
5. **queryAppType**, path=API.projMan.queryAppType
* Description: query for the app type, can be web, ios, or android.
* Return Value: a string in ("web", "android", "ios"). Maybe someday we will have "Windows" and "Mac".
6. **queryAppPackageName**, path=API.projMan.queryAppPackageName
* Description: query for the app name
* Return Value: the name of the app.
7. **queryAppVersionNumber**, path=API.projMan.queryAppVersionNumber
* Description: query for the app version number
* Return Value: the version string of the app under test.
8. **queryAppFstActivity**, path=API.projMan.queryAppFstActivity
* Description: query for the first activity id for launching the app.
* Return Value: the first activity name if the app under test is an Android app.
9. **queryProjectId**, path=API.projMan.queryProjectId
* Description: query for the project identifier
* Return Value: the id of the project. Project Id can duplicate across apps under test.