I'm trying to scrape this piece of code, but I realize that the region I want to extract only appears at Chrome with "Inspect element". Viewing the source code, this piece disappears.
How can I get this data? I tested with scrapy shell and nothing...
Here (inspect element) the tag appears:
<div id="Brinde"></div>
<script>MostraParcelaPagSeguro(158.0,0, 1886481);</script>
<span class="ParcelaPagSeg">em <b>12x</b> de <b>R$ 14,93</b></span>
</div>
Here (source code) the tag disappears:
<div id="Brinde"></div>
<script>MostraPreco(158.0,158.0,'PM3602001_30',0);</script><br>
<script>MostraParcelaPagSeguro(158.0,0, 1886481);</script>
</div>
I know this is probably because the script MostraParcelaPagSeguro(). But how can I extract this?