Forum Discussion

Shashavali's avatar
Shashavali
Contributor
7 years ago
Solved

how to read values from json file as we can from Excel or .txt file

Hi,

 

I am trying to read the values from .json file format by using Data Source Step. By it says file format unsupported.

 

I am successfully able to read values using Excel and Text file. Is it possible to read values from .json file format.

 

Thanks a lot in advance.

 

Regards,

Shasha

  • Hi,

     

    When creating the datasource, you have noted that whilst JSON is an option, there is no way to read in from files.  So, do that.

     

    Firstly, create a Groovy step.  In the Step return the contents of the JSON file.

     

     

    def file1 = new File('C:/temp/temp.json');
    
    return file1.text;

     

     

    If you run this step on its own, you should get a pop-up that shows the contents of the file.  If you don't check the path and file name.

     

    Then, create your data source step.  Select JSON from the DataSource dropdown.  Then, from the 'Source Step' dropdown, select the Groovy step created earlier.  From the Source Property dropdown, select 'Result'.

     

    From here, you just need to define the properties of the JSON object.

6 Replies

  • Hi,

     

    When creating the datasource, you have noted that whilst JSON is an option, there is no way to read in from files.  So, do that.

     

    Firstly, create a Groovy step.  In the Step return the contents of the JSON file.

     

     

    def file1 = new File('C:/temp/temp.json');
    
    return file1.text;

     

     

    If you run this step on its own, you should get a pop-up that shows the contents of the file.  If you don't check the path and file name.

     

    Then, create your data source step.  Select JSON from the DataSource dropdown.  Then, from the 'Source Step' dropdown, select the Groovy step created earlier.  From the Source Property dropdown, select 'Result'.

     

    From here, you just need to define the properties of the JSON object.

    • AAB's avatar
      AAB
      Regular Contributor

      Hello ChrisA 

       

      I needed this too bur I get an error message in ReadyAPI version 2.6.0:

       

      What did I do wrong please? or what should I do?

      If I run the groovy script I indeed have an overview of my json file.

       

      Thanks in advance.

       

       

      • ChrisA's avatar
        ChrisA
        Contributor

        Hi,

         

        Doesn't look like a SoapUI error.  Have you done as it suggests and check your data for numeric values with leading zeroes?