We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6cfb05 commit 8449278Copy full SHA for 8449278
components/dash-core-components/tests/integration/tooltip/test_tooltip.py
@@ -80,6 +80,8 @@ def update_tooltip_content(hoverData):
80
assert 175 < coords[0] < 185, "x0 is about 200 minus half a marker size"
81
assert 175 < coords[1] < 185, "y0 is about 200 minus half a marker size"
82
83
- ActionChains(dash_dcc.driver).move_to_element_with_offset(elem, 0, 0).perform()
+ ActionChains(dash_dcc.driver).move_to_element_with_offset(
84
+ elem, 5, elem.size["height"] - 5
85
+ ).perform()
86
87
until(lambda: not dash_dcc.find_element("#graph-tooltip").is_displayed(), 3)
0 commit comments