def find_primary_button()

in foxpuppet/windows/browser/notifications/base.py [0:0]


    def find_primary_button(self) -> WebElement | Any:
        """Retrieve the primary button."""
        if self.window.firefox_version >= 67:
            return self.root.find_element(
                By.CLASS_NAME, "popup-notification-primary-button"
            )
        return self.root.find_anonymous_element_by_attribute("anonid", "button")