Say I reference an element inside of a table in a HTML page like this:
someEl = soup.findAll(text = "some text")
I know for sure this element is embedded inside a table, is there a way to find the parent table without having to call .parent so many times?
<table...>
..
..
<tr>....<td><center><font..><b>some text</b></font></center></td>....<tr>
<table>