I tried whole day but unable to extract the overwritten texts of p tag. For example:
<p id='demo'><p>
<Script>
Var = document.getElementById('demo').innerHTML = 'some context'
<Script>
I need the text 'some context' into python. I tried with beautifulsoup
page = soup.find('p').getText()
I'm getting nothing. Is there any way to get changed text of p tag. Any Help will be appreciated.