I want to extract structured data from the following website .
https://www.indeed.co.in/jobs?q=Walmart&l=
I am able to extract the job title , company name , location and other information visible on the left hand side. The box on the right side ( containing job description) appears only when the job title is clicked. I want to also extract the job description for all the results. I tried indicating the job description in the data scraping wizard but it gave an error ( Cannot find all pattern elements ) because the box is only visible when clicked.
One solution is to first extract all the data on the left , including the url of the title , and then loop through each url scraping the job description . Is there any other direct method ?