I am trying to download to txt file some website data but the actual data I need doesn't get loaded in the website for about 10 seconds later until after the video feed loads so when I run curl to grab the website data, it grabs the first bit then exits but this is not the data I need, I need the data that is running 10-15 seconds after the initial site loads.
curl -L http://mywebsite.com > output.txt
Is there a way to accomplish this? Thank you