Forum Discussion

KayChamberlain's avatar
KayChamberlain
New Contributor
3 years ago
Solved

Zephyr Squad BDD - Adding a scenario fails because 'Description' is required

Hi I just starting out using the BDD feature in Zephyr Squad but when I try to enter the a scenario I get a pop up error message saying:

{"description":"Description is required"}

 

I've read that a feature is a "Story" type issue and a scenario is a "test" type issue but in our project "Description" is set as a required field for both stories and tests, but I don't know how to show the description field to be able to populate it for the "scenario".

Any help resolving this would be most greatly appreciated.

TIA

Kay

 

Note : Description is displayed for the main story/feature

 

5 Replies

  • Hi porcupineRabbit,

    I have made a number of experiments but failed to find an easy way to modify the Duplicate Each Value parameter of the generator from the Groovy script so far. Can you please submit a case using this link so that we could perform a more thorough investigation and consult the developers?

    Also, please describe your testing scenario more precisely as there may be some other ways to achieve the goal.


    • porcupineRabbit's avatar
      porcupineRabbit
      Occasional Contributor

      Hello JKolosova ,

       

      thank you for your interest and yes, you are right. There is no easy way to do that, since "Geta Data" option is not available for this field when you right-click.

      I managed to develop a groovy function that performs this task, after a (rather long and thorough) research in old and new readyAPI / soapUI documentation pages! You can see the method below, but I will also open a support ticket as you suggested, so the dev team can investigate if this task can become less "tedious" (I had my fun share building this) ðŸ˜Š

       

       

      void setGeneratorDuplicateValue(WsdlDataSourceTestStep generatorStep, String propertyItem, int duplicationValue) {
      	DataSource oDataGen = generatorStep.getDataSource()
      	GeneratorDescriptor genDescriptor = oDataGen.getDescriptorForProperty(propertyItem)
      	PropertyTypeBasePanel  propTypeBase = genDescriptor.getTab()
      	
      	propTypeBase.setDuplicateValue(duplicationValue)
      	genDescriptor.setUpdated(true)
      	oDataGen.setGeneratorDescriptor(genDescriptor)
      	genDescriptor = null
      }
      
      // How to call it
      // def objDataGenStep = context.testCase.testSuite.getTestCaseByName("Test_Case_Name").testSteps["Data Generator"]
      // setGeneratorDuplicateValue(objDataGenStep,"autoNumber", neededRows)

       

      What  I am trying to achieve is:
      I perform some load tests and I have an excel file (data source) with the data rows needed. Each run needs a different number of rows, depending on the workload. The task is to change the duplicate values assigned from the Data Generator, according to the data rows. For example, if I set the data source to get 25 rows, the generator must duplicate the same number of values (25 that is), from a given set. If you need more insight please say so, since this is an already long post.

      Finally, it would be great if the ReadyAPI API documentation had some comments for the methods / objects available. If I can also open a support ticket for this, please let me know. 

      Thank you for your help