maputnik/test/functional/accessibility/skip-links.js

52 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-05-31 16:33:09 +02:00
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();
2020-05-31 16:33:09 +02:00
});
it("skip link to layer list", async function() {
2020-05-31 16:33:09 +02:00
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());
2020-05-31 16:33:09 +02:00
});
it("skip link to layer editor", async function() {
2020-05-31 16:33:09 +02:00
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());
2020-05-31 16:33:09 +02:00
});
it("skip link to map view", async function() {
2020-05-31 16:33:09 +02:00
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());
2020-05-31 16:33:09 +02:00
});
});