A CSS selector that identifies this DOM node.
(self)
| 837 | |
| 838 | @property |
| 839 | def css_identifier(self) -> str: |
| 840 | """A CSS selector that identifies this DOM node.""" |
| 841 | tokens = [self.__class__.__name__] |
| 842 | if self.id is not None: |
| 843 | tokens.append(f"#{self.id}") |
| 844 | return "".join(tokens) |
| 845 | |
| 846 | @property |
| 847 | def css_identifier_styled(self) -> Text: |