File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
10
10
[#2003](https://github.com/plotly/dash/issues/2003) in which
11
11
`dangerously_allow_html=True` + `mathjax=True` works in some cases, and in some cases not.
12
12
13
- - [#2049](https://github.com/plotly/dash/pull/2043) Added `wait_for_class_to_equal` and `wait_for_contains_class` methods to `dash.testing`
13
+ ### Added
14
14
15
+ - [#2049](https://github.com/plotly/dash/pull/2043) Added `wait_for_class_to_equal` and `wait_for_contains_class` methods to `dash.testing`
15
16
16
17
## [2.4.1] - 2022-05-11
17
18
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def __call__(self, driver):
80
80
logger .debug (
81
81
"contains class {%s} => expected %s" , classname , self .classname
82
82
)
83
- return self .classname in str (classname )
83
+ return self .classname in str (classname ). split ( " " )
84
84
except WebDriverException :
85
85
return False
86
86
You can’t perform that action at this time.
0 commit comments