I am crawling some data from a website. I need to recover some links from a list of products. First I identified one of the links with inspect element:
Then I used request to save all the source code of that page in a text file:
source_code = requests.get(link)
plain_text= source_code.txt
Then I used my text editor to search the link and it did not found it. Im working with BeautifulSoup4, but I already tried several different ways to crawl the page to get the list of products but all give the same result.
My suspicion is that the list of product is generated by some code (probably Java) when someone enter the page, but I am not sure. I have been several hours trying to make this work so any hint is going to be appreciated.