I need to navigate to an html element of a particular type. However, there are many such elements of that type on the page, with many different classes.
I need one w
As of Beautiful Soup version 4.1.2, you can use the class_ keyword argument.
To select an element without a class attribute, you can just specify None:
None
soup.find_all(class_=None)
Alternatively, specifying False also works:
False
soup.find_all(class_=False)