Thank you Niharika for your prompt response!
I suppose if I setup reporter for our cypress cucumber framework, and report results into AIO - how the sync is happening when a cucumber test case is changed, and on what axis does it sync together?
e.x:
buttonTest.feature
Feature: Testing button functionality
Background:
* I am logged in
Scenario: Button can be clicked
* I open the page containing the button
* I click on the button
I imported this as bdd test case, I already have it in AIO. This test case can be changed based on requirement change.
buttonTest.feature
Feature: Testing button functionality
Background:
* I am logged in
Scenario: Button can be clicked
* I open the page containing the button
* Button should be visible
* I click on the button
How will that change take place in AIO? When I upload my cucumber json will it change the feature file according to that change? Will a new test case be created?
I want to achieve the following, maybe you know the best way for me to approach it.
* Upload all of the automated cucumber-cypress, cypress, playwright test cases into AIO.
* Have them updated if change is happening to the actual test case such as above.
* When we run our daily tests, I want the results to be inside AIO relating to the Jira.
They already have a tag on them associated by Jira IDs, however it is not @REQ-**** so I have to re-tag every cucumber case we have, do you know a way on how I can avoid it? Maybe let AIO know what tags we use, and what tags to sync?
Thanks!