mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-27 10:25:27 +01:00
Fix test for range slider.
This commit is contained in:
parent
dddd604f7b
commit
d61d0a5795
1 changed files with 2 additions and 2 deletions
|
@ -200,7 +200,7 @@ describe("layers", function() {
|
||||||
|
|
||||||
const elem = $(wd.$("layer-list-item:background:"+bgId));
|
const elem = $(wd.$("layer-list-item:background:"+bgId));
|
||||||
elem.click();
|
elem.click();
|
||||||
browser.setValueSafe(wd.$("min-zoom", "input"), 1)
|
browser.setValueSafe(wd.$("min-zoom", 'input[type="text"]'), 1)
|
||||||
const elem2 = $(wd.$("layer-editor.layer-id", "input"));
|
const elem2 = $(wd.$("layer-editor.layer-id", "input"));
|
||||||
elem2.click();
|
elem2.click();
|
||||||
|
|
||||||
|
@ -232,7 +232,7 @@ describe("layers", function() {
|
||||||
|
|
||||||
const elem = $(wd.$("layer-list-item:background:"+bgId));
|
const elem = $(wd.$("layer-list-item:background:"+bgId));
|
||||||
elem.click();
|
elem.click();
|
||||||
browser.setValueSafe(wd.$("max-zoom", "input"), 1)
|
browser.setValueSafe(wd.$("max-zoom", 'input[type="text"]'), 1)
|
||||||
const elem2 = $(wd.$("layer-editor.layer-id", "input"));
|
const elem2 = $(wd.$("layer-editor.layer-id", "input"));
|
||||||
elem2.click();
|
elem2.click();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue