in foxpuppet/windows/browser/notifications/base.py [0:0]
def find_close_button(self) -> WebElement | Any:
"""Retrieve the close button."""
if self.window.firefox_version >= 67:
return self.root.find_element(By.CLASS_NAME, "popup-notification-closebutton")
return self.root.find_anonymous_element_by_attribute("anonid", "closebutton")