@@ -75,7 +75,7 @@ class NoSuchElementException(WebDriverException):
75
75
def __init__ (
76
76
self , msg : Optional [str ] = None , screen : Optional [str ] = None , stacktrace : Optional [Sequence [str ]] = None
77
77
) -> None :
78
- with_support = f"{ msg } ; { SUPPORT_MSG } { ERROR_URL } #no-such-element-exception "
78
+ with_support = f"{ msg } ; { SUPPORT_MSG } { ERROR_URL } #nosuchelementexception "
79
79
80
80
super ().__init__ (with_support , screen , stacktrace )
81
81
@@ -114,7 +114,7 @@ class StaleElementReferenceException(WebDriverException):
114
114
def __init__ (
115
115
self , msg : Optional [str ] = None , screen : Optional [str ] = None , stacktrace : Optional [Sequence [str ]] = None
116
116
) -> None :
117
- with_support = f"{ msg } ; { SUPPORT_MSG } { ERROR_URL } #stale-element-reference-exception "
117
+ with_support = f"{ msg } ; { SUPPORT_MSG } { ERROR_URL } #staleelementreferenceexception "
118
118
119
119
super ().__init__ (with_support , screen , stacktrace )
120
120
@@ -213,7 +213,7 @@ class InvalidSelectorException(WebDriverException):
213
213
def __init__ (
214
214
self , msg : Optional [str ] = None , screen : Optional [str ] = None , stacktrace : Optional [Sequence [str ]] = None
215
215
) -> None :
216
- with_support = f"{ msg } ; { SUPPORT_MSG } { ERROR_URL } #invalid-selector-exception "
216
+ with_support = f"{ msg } ; { SUPPORT_MSG } { ERROR_URL } #invalidselectorexception "
217
217
218
218
super ().__init__ (with_support , screen , stacktrace )
219
219
0 commit comments