I am trying the following code but not getting anything inside section
tag
page = requests.get('https://www.iplt20.com/match/2018/20?tab=scorecard')
soup = BeautifulSoup(page.content, 'html.parser')
soup.find_all('section', {'class':'contentTab tab3 scorecardContent'})
I am getting the following result:
[<section class="contentTab tab3 scorecardContent" id="scorecardContent" style="display:none"></section>]
I checked and found that the content/text I want is in innerText
but I am not able to fetch it
Please help, how can I get the details as shown in innerText?