Does a feature have to be a file in the filesystem? #2210
Replies: 2 comments 4 replies
-
In theory, yes! Cucumber uses the Java I've never tried this in practice though. |
Beta Was this translation helpful? Give feedback.
-
Given the contents of the Feature can be streamed from Xray
When you want to execute your test
Then you will still need to write code to implement your step definitions
And your code should be in some sort of version control
But having step definitions stored without the steps could be problematic
And I wouldn't recommend it It is important to have a "source of truth". What I have done before (with both qTest and Zephyr Scale), is to make the This enabled us to develop test plans in Jira, while keeping the For Xray, this would correspond to what they describe in their documentation as a |
Beta Was this translation helpful? Give feedback.
-
Hi,
is it possible to read a single feature file from a Webservice instead of reading it from file system?
We are going to introduce xRay which supports Cucumber Features. As far as i understand it, i would have to export the feature files from there into a real file and then run the tests.
Question is : Is it possible to skip the save to file part and configure reading feature files via webrequest or maybe read it in some kind of before hook?
xRay Docu :
https://docs.getxray.app/display/XRAY31/Testing+with+Cucumber
Thanks in adance.
Beta Was this translation helpful? Give feedback.
All reactions