Im trying to fetch links to guides about given class and it's style of play. Here on screenshot highlighted in yellow is the div responsible for their rendering. I need to use async since this class is used in discord.py bot and trying to use HTMLSession() resulted in error saying i need to use AsyncHTMLSession.
Website address - https://immortal.maxroll.gg/category/build-guides#classes%3D%5Bdi-necromancer%5D%26metas%3D%5Bdi-pvp%5D

But my code outputs this div as empty
code
from requests_html import AsyncHTMLSession
asession = AsyncHTMLSession()
class Scrapper:
def __init__(self):
self.headers = {'User-Agent':'Mozilla/5.0 (X11; Linux x86_64; rv:100.0) Gecko/20100101 Firefox/100.0'}
async def return_page(self, url):
response = await asession.get(url)
await response.html.arender(timeout=15, sleep=5)
#article = response.html.find('#filter-results', first=True)
print(response.html.html)
return response
async def return_build_articles(self, userClass, instance):
url = f"https://immortal.maxroll.gg/category/build-guides#classes%3D%5Bdi-{userClass}%5D%26metas%3D%5Bdi-{instance}%5D"
articles = await self.return_page(url)
selected part of the output
</div>
</div>
</div>
</div>
</div>
</form> <hr class="global-separator ">
<div id="immortal-mobile-mid-banner" class="adsmanager-ad-container mobile-banner"></div>
<div id="filter-results" class="posts-list"><!-- here should be the results --></div>
<div class="page-navigation" role="navigation"></div>
</div>
</div>
</div>