BeautifulSoup不会返回它应该的所有元素

我正在尝试从Beautifulsoup的以下网站导入所有优惠。

from bs4 import BeautifulSoup as soup 
from urllib.request import urlopen as uReq
import requests
my_url='https://www.promobit.com.br/promocoes/playstation-4/s/'
uclient=uReq(my_url)
page_html=uclient.read()
uclient.close()
page_soup=soup(page_html, "html.parser")
containers=page_soup.findAll("div",{"class":"in-size"})

但是,当我检查列表的长度时,而不是获得我期望的值96,而是返回3。

print(len(containers))
>>> 3

由于某些原因,当我在“容器”中打印文本时,我从一些标有“ de graca”的商品中获得了数据。

我尝试使用其他解析器,但是结果仍然错误。