Automate the web application by parsing json.

manzur

New Member
Hi Blueprism community,

One help I have some set of json files(say as of now 10 files) in a folder .I need to read all files and the contents of json files and I need to extract key and value pairs from each json and need to fill the web application(Which has fields to input ).I need to repeat the filling of the web application for all the 10 files of json.Please suggest if you have any good approach on achieving the above task.
 

gil.silva

Active Member
Hello manzur,

the best way is to read the JSON files to a data item and use Regex to extract all the key and value pairs to a collection.
Then loop this collection and fill the web application.
 
Top