Hi, We are using Xray and Jira cloud.
I am trying to export Manual test Steps through API.
referring the documentation below:
https://docs.getxray.app/display/XRAYCLOUD/REST+API
It has an API for importing Cucmber test steps but cannot find Manual steps.
Please help us to access test steps through API.
Community moderators have prevented the ability to post new answers.
Hi @Vishal vanpariya ,
Thank you for your question,
Have you tried making use of GraphQL?
Find more here: getTest
{
getTest(issueId: "12345") {
issueId
testType {
name
kind
}
steps {
id
data
action
result
attachments {
id
filename
}
}
}
}
Best, Francisco
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.