I'd like to understand why this Scrape doesn't work:
I'm using BeautifulSoup for it:
from bs4 import BeautifulSoup
import requests
import pandas as pd
URL = 'https://www.carrefour.com.br/informatica/notebook#crfimt=hm-tlink|carrefour|menu|campanha|notebooks|4|270722?page=1'
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36'}
soup1 = BeautifulSoup(page.content, 'html.parser')
soup2 = BeautifulSoup(soup1.prettify(), 'html.parser')
soup2.find('div', {'class': 'carrefourbr-carrefour-components-0-x-productNameContainer'})
But it doesn't find anything..
HTML Structure:
Can anybody help here?
P.S: This problem happened when Scraping at first:

So, what I've done was open my prompt and entered:
jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10
I dont know if it has something to do with the problem..

