Fix zoom level related tooltip for Edit button

This commit is contained in:
Anton Khorev 2022-09-13 05:26:49 +03:00
parent e8f2af833a
commit 84c8289e06
2 changed files with 25 additions and 4 deletions

View file

@ -61,10 +61,24 @@ class SiteTest < ApplicationSystemTestCase
find(selector).hover
assert_selector ".tooltip", :text => "Zoom in"
end
test "no zoom-in tooltips on high zoom levels, then tooltips appear after zoom out for control '#{selector}'" do
visit "/#map=14/0/0"
assert_no_selector ".tooltip"
find(selector).hover
assert_no_selector ".tooltip", :text => "Zoom in"
find("h1").hover # un-hover original element
visit "/#map=10/0/0"
find(selector).hover
assert_selector ".tooltip", :text => "Zoom in"
end
end
test "notes layer tooltip appears on zoom out" do
visit "/#map=9/40/-4" # depends on zoom levels where notes are allowed
find(".control-layers .control-button").click
li = find(".layers-ui .overlay-layers li:first-child")
li.not_matches_css? ".disabled"