0
Assuming I have the following div ids
<div id='post_message_12932087>
<p>random text</p>
</div>
<div id='post_message_21390123>
<p>random text2</p>
</div>
<div id='post_message_23190495>
<p>random text3</p>
</div>
How would I get the data (using find_all()) from each of these div ids, the default of each div id being the following "post_message_numero"?
pagina.find_all('div', {'id', 'post_message_xxxx'})
Perfect! Thank you very much!
– BRKappa