Hello this is a dummy code but I want to get the Doodle text from the second <a>:
<div class="test">
<a href="www.google.com"></a>
<a href="https://www.google.com/doodles"> Doodle </a>
</div>
These are my failed codes:
soup.find('div', {'class' : 'test'}) #1
soup.find('div', {'class' : 'test'}).next_sibling #2