Hi, I'm currently extracting all the data from a website as some contents change on search of something.
For e.g., in a Food Recipe website, I search for Tomato Rice. There will be more contents, but Ingredients and Instructions will be common for all the recipes. So, I'm extracting all the data as the placeholder of Ingredients and Instructions will be different for each recipe.
On extraction, it'll come as DataWebPage[0]['result'] and inside that the extracted will be stored as below. But it's failing sometimes as it couldn't find the exact text. But this should happen dynamically.


My task is I need to extract all the data and from that I need to find the "Ingredients" and extract the ingredients part alone. Similarly, I need to find "Instructions" and extract the instructions part alone. After extracting them separately, I need to store them in a variable.
Please help me to resolve this issue,
Thanks in advance for your help.