def test_close_tool_window(summary_page: SummaryPage):
    summary_page.click_address('Identical Street', '1')
    assert summary_page.tool_window_visible()
    summary_page.close_tool_window()
    assert not summary_page.tool_window_visible()
def test_open_tool_window_on_match(summary_page: SummaryPage):
    assert not summary_page.tool_window_visible()
    summary_page.click_address('Identical Street', '1')
    assert summary_page.tool_window_visible()