Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is possible to import JIRA User Stories and Acceptance Tests to Robot Framework and link them


I want to import from JIRA; User Stories and Acceptance Criteria as Test Scripts, to Robot Framework.

When I have searched, I Found JiraRobot Library.

But this serves the purpose like from robot framework, connect to JIRA, Create issue, assign the user, add the attachment and add a comment.

Please any one help me whether we can import test scripts directly from JIRA to Robot Framework and link these scripts to those user stories for tracking.

like image 685
Sarada Akurathi Avatar asked Oct 17 '22 19:10

Sarada Akurathi


1 Answers

you could try jira-cli. This library has the ability to query JIRA issues.

Example from docs.

  ali@home ~ $ jira-cli view --search-jql 'reporter=ali and type=bug'

Reference

  1. https://confluence.atlassian.com/agile065/glossary/story
  2. https://jira-cli.readthedocs.io/en/latest/intro.html#interacting-with-issues
like image 161
Shijo Avatar answered Oct 21 '22 03:10

Shijo