@nbakka/mcp-appium 2.0.84 → 2.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/server.js
CHANGED
|
@@ -614,10 +614,10 @@ tool(
|
|
|
614
614
|
|
|
615
615
|
tool(
|
|
616
616
|
"fetch_testcases_from_tcms",
|
|
617
|
-
"Before
|
|
617
|
+
"Before calling these tool, folder name can be analysed by data fetched from jira ticket info. Before generating test cases for a jira ticket, always fetch existing test cases from TCMS tool for a specific folder",
|
|
618
618
|
{
|
|
619
|
-
projectKey: zod_1.z.string().describe("The project key
|
|
620
|
-
folderName: zod_1.z.string().describe("The folder name to filter test cases (e.g., PDP)")
|
|
619
|
+
projectKey: zod_1.z.string().describe("The project key Default: SCRUM"),
|
|
620
|
+
folderName: zod_1.z.string().describe("The folder name to filter test cases (e.g., PDP), folder name can to be fetched from jira ticket info")
|
|
621
621
|
},
|
|
622
622
|
async ({ projectKey, folderName }) => {
|
|
623
623
|
try {
|
|
@@ -7,11 +7,16 @@ final output should be test in following format
|
|
|
7
7
|
"Verify pay on credit banner exits on PDP", "Existing"
|
|
8
8
|
"Verify overview tab on PDP", "New"
|
|
9
9
|
"Verify financial services are displayed under financial tab", "Remove", "SCRUM-TC-2"
|
|
10
|
-
"Verify xyz is present in overview section ", "Verify xyz is moved from overview to property tour section ", "Modify", "SCRUM-TC-2"
|
|
10
|
+
"Verify xyz is present in overview section (this is a before test case fetched from tcms)", "Verify xyz is moved from overview to property tour section (this is a after test case generated)", "Modify", "SCRUM-TC-2"
|
|
11
11
|
Existing - already exists in TCMS and no changes needed
|
|
12
12
|
New - doesn't exist in TCMS and needs to be created
|
|
13
13
|
Remove - to remove test cases from TCMS because it is no longer valid
|
|
14
|
-
Modify - existing TCMS test case needs to be modified because of changes in the feature,
|
|
14
|
+
Modify - existing TCMS test case needs to be modified because of changes in the feature,
|
|
15
|
+
should contains before test case from tcms and after testcase that is generated, only test cases
|
|
15
16
|
existing in TCMS and if change is to be done to it should be marked as Modify
|
|
16
17
|
"SCRUM-TC-2" - id of existing test case in TCMS, only for Remove and Modify test cases
|
|
17
|
-
if any new test case is to be created then don't mention any id against it
|
|
18
|
+
if any new test case is to be created then don't mention any id against it
|
|
19
|
+
for review_testcases test cases tool data should be in this format, strictly follow this format espcially for Modify test cases
|
|
20
|
+
{"testCases":[["Verify that brochure section is visible under overview tab","Verify brochure section is removed from property tour tab","Modify","SCRUM-TC-1"],
|
|
21
|
+
["Verify similar properties section is visible under over tab in pdp section","Remove","SCRUM-TC-2"],
|
|
22
|
+
["Verify Project Brochure section appears above the 'Explore on map' section in Overview tab","New"]]}
|