mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 15:41:14 +01:00
3727c9ad5e
Fixes #814 * fix: remove outdated references to mapbox * docs: fix references in readme * chore: fix mapbox references in tests * chore: fix mapbox references in stories, webpack config * chore: remove empty array
51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
var assert = require("assert");
|
|
var config = require("../../config/specs");
|
|
var helper = require("../helper");
|
|
var wd = require("../../wd-helper");
|
|
|
|
|
|
describe("skip links", function() {
|
|
beforeEach(async function () {
|
|
await browser.url(config.baseUrl+"?debug&style="+helper.getGeoServerUrl("example-layer-style.json"));
|
|
await browser.acceptAlert();
|
|
});
|
|
|
|
it("skip link to layer list", async function() {
|
|
const selector = wd.$("root:skip:layer-list")
|
|
const elem = await $(selector);
|
|
assert(await elem.isExisting());
|
|
await browser.keys(['Tab']);
|
|
assert(await elem.isFocused());
|
|
await elem.click();
|
|
|
|
const targetEl = await $("#skip-target-layer-list");
|
|
assert(await targetEl.isFocused());
|
|
});
|
|
|
|
it("skip link to layer editor", async function() {
|
|
const selector = wd.$("root:skip:layer-editor")
|
|
const elem = await $(selector);
|
|
assert(await elem.isExisting());
|
|
await browser.keys(['Tab']);
|
|
await browser.keys(['Tab']);
|
|
assert(await elem.isFocused());
|
|
await elem.click();
|
|
|
|
const targetEl = await $("#skip-target-layer-editor");
|
|
assert(await targetEl.isFocused());
|
|
});
|
|
|
|
it("skip link to map view", async function() {
|
|
const selector = wd.$("root:skip:map-view")
|
|
const elem = await $(selector);
|
|
assert(await elem.isExisting());
|
|
await browser.keys(['Tab']);
|
|
await browser.keys(['Tab']);
|
|
await browser.keys(['Tab']);
|
|
assert(await elem.isFocused());
|
|
await elem.click();
|
|
|
|
const targetEl = await $(".maplibregl-canvas");
|
|
assert(await targetEl.isFocused());
|
|
});
|
|
});
|